figaro icon indicating copy to clipboard operation
figaro copied to clipboard

Simple Rails app configuration

Results 80 figaro issues
Sort by recently updated
recently updated
newest added

Hello, I'm trying to push my application.yml keys to heroku with the command `figaro heroku:set -e production` but I'm getting the following error: ``` ! Please specify a version along...

Not sure how to report this, but active record's (4.2.x) default behavior has some undesired side-effects on rake tasks when used with figaro. The rake db:\* tasks run twice in...

Hi, When I run : `figaro heroku:set -e production ` and `figaro heroku:set` I have : `Could not find command "heroku:set".` I tried few versions of figaro like : gem...

Using a Rails app as an example, a developer may want to load certain default values when `Rails.env.development?` and others when running the test suite and `Rails.env.test?`. Both of these...

The commands are very similar to those for Heroku: ``` eb setenv RACK_ENV=development ``` I might need this for a project, so I'll be willing to take a stab at...

I have an app I created. After installing figaro at the end of my development I could no longer run any rake task. Has anyone seen this before? I would...

Users/xxx/.rvm/gems/ruby-2.3.1/gems/figaro-1.1.1/lib/figaro/cli/task.rb:28:in 'system':no implicit conversion of Hash into String (TypeError)

Hey Guys! I encountered with an issue today with figaro. I have `config/application.yml` like ``` yml development: user_name: bloggingwebsite password: 'mypassword' ``` and in `Gemfile` I had ``` ruby group...

Just updated to Rails v4.2.0, and noticed that Figaro is no longer setting the environment in application.rb as it used to in Rails v4.1: ``` ruby module MyApp class Application...

Can i get environment var from heroku. Suppose other developer created env variable on local machine, and run` bundle exec figaro heroku:set -e production` How i can get variable set...