I have some constants that represent the valid options in one of my model's fields. What's the best way to handle these constants in Ruby?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can use an array or hash for this purpose (in your environment.rb):
or alternatively an enumeration class, which allows you to enumerate over your constants as well as the keys used to associate them:
which you can then derive from:
and use like this:
|
|||||
|
|
If it is driving model behavior, then the constants should be part of the model:
This will allow you to use the built-in Rails functionality:
Alternatively, if your database supports enumerations, then you can use something like the Enum Column plugin. |
|||
|
|
|
I put them directly in the model class, like so:
Then, when using the model from another class, I reference the constants
|
|||||
|
|
You can also use it within your model inside a hash like this:
And use it like this:
|
|||
|
|