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
1 Answer