Is there any way to get application configuration values, that was setted in "config/environments/development" ?

MyApp::Application.configure do
  config.my_value = "Test"  
end

MyApp::Application object is accessible from the app, but, this code does't works:

MyApp::Application.config.my_value
link|improve this question

53% accept rate
feedback

3 Answers

up vote 1 down vote accepted
Rails.application.config.my_value
link|improve this answer
feedback

I would suggest using one of the many Gems out there to handle custom configurations in Rails apps.

Personally I use rails_config a lot.

link|improve this answer
feedback

Check out this plugin by Mislav: https://github.com/mislav/choices

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.