Jonathan Allard

Results 73 comments of Jonathan Allard

I seem to run into a similar problem where there is an empty cell at the end of the row which might throw things off

Yup, it's the workaround I ended up using for the time being. The crux is that because Figaro runs on before_configuration, you can't even config it with an initializer. I...

Also to note that the param in the workaround will be ignored by `figaro heroku:set`

What if, dirty fix, we checked if there was a `config/initializers/figaro.rb` and loaded that before the cli

@laserlemon Would you accept a PR that would run `config/initializers/figaro.rb` on load if present? Dirty fix, but I can't think of another strategy

I just need to point out that this is f—ing annoying, even for the 2 minutes I have to use Figaro. (would be 30 seconds otherwise)

Got annoyed by this again, wondering what to do next...

Integer or boolean. Here's my code: ``` yml KEY: 1 ``` Edit: it'd be basically the same test as here: https://github.com/laserlemon/figaro/blob/master/spec/figaro/cli/heroku_set_spec.rb#L58

I'd put a `to_s` in there: https://github.com/laserlemon/figaro/blob/master/lib/figaro/cli/heroku_set.rb#L29 Edit: Wait, that's not it; let me fiddle around with the test