In a Ruby on Rails application, where is the best place to define a constant?
I have an array of constant data that I need available across all the controllers in my application.
|
In a Ruby on Rails application, where is the best place to define a constant? I have an array of constant data that I need available across all the controllers in my application. |
||||
|
|
|
Rails >= 3, the application is itself a module (living in
Then use Rails >= 2.1 && < 3 you should place them
Prior to Rails 2.1 and Here's a few examples
|
|||||||||||||
|
|
You can place them in config/environment.rb:
If you have large amounts of global constants, this can be messy. Consider sourcing from a YAML file, or keeping the constants in the database. EDIT: weppos' answer is the better answer. Keep your constants in a file in config/initializers/*.rb |
||||
|
|