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?
feedback
|
|
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:
| |||||
feedback
|
|
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. | |||
|
feedback
|
|
I put them directly in the model class, like so:
Then, when using the model from another class, I reference the constants
| |||
|
feedback
|
|
You can also use it within your model inside a hash like this:
And use it like this:
| |||
|
feedback
|