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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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: