How cat I get list of validations defined in model
Example:
class ModelName
validates_presence_of :field_name
validates_inclusion_of :sex, :in => %w(M F)
end
I need Hash like:
{:field_name => 'required', :sex => 'Must be in: M, F'}
|
How cat I get list of validations defined in model Example:
I need Hash like:
| |||
|
feedback
|
|
You don't need a plugin for basic needs. You can do this to get a hash of all validators.
If you want to get the validators for a specific field :
| |||||||||
feedback
|
|
Looks like there's no native way to do it, but a quick Google (for "rails reflect validations") turns up this plugin. | |||
|
feedback
|