I used to put Global variables in environment.rb with my Rails 2.3.8 application such as:
MAX_ALLOWD_ITEMS = 6
It doesn't seem to work in Rails 3. I tried putting it in application.rb and that didn't help.
What do you suggest?
|
I used to put Global variables in environment.rb with my Rails 2.3.8 application such as:
It doesn't seem to work in Rails 3. I tried putting it in application.rb and that didn't help. What do you suggest? |
|||
|
|
|
If you have already tried restarting your server as Ryan suggested, try putting it in your applicaton.rb like this:
Then you can call it with the namespace in your controllers, views or whatever..
Another alternative would be using something like settingslogic. With settingslogic, you just create a yml config file and a model (Settings.rb) that points to the config file. Then you can access these settings anywhere in your rails app with:
|
|||||
|
|
If you are truly defining it in config/environment.rb like you say, the only way I can duplicate your problem is by running up a server using If I stop the server and start it again and again try to access that view or controller then it works. I reckon you just haven't restarted your server. |
|||
|
|
|
I don't know if the solution of adding variables to environment.rb would in fact work in Rails3 - to be specific, if you haven't defined the variable inside a module definition like so:
you won't be able to just use Max_ints, if you just include it as a bare definition. Or at least that's what I found happened when I experimented with this. I also think the suggestion to use the initializers/ folder is possibly a better solution in terms of ease of use. See Permanent variable in Rails |
|||
|
|
|
I normally create inside config/initializers/ a yaml (yml) file with all the global site settings. remember to restart the server each time you change anything. |
|||
|
|