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'}
link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

You don't need a plugin for basic needs.

You can do this to get a hash of all validators.

ModelName.validators

If you want to get the validators for a specific field :

ModelName.validators_on(:attribute)
link|improve this answer
Cool! It's better, than plugin – manzhikov Oct 29 '10 at 13:53
Yup, agreed. Way better. – Chowlett Oct 29 '10 at 14:02
1  
Just a note, this is only available in Rails 3. For earlier rails apps, the plugin is the way to go. – Jaime Bellmyer Oct 29 '10 at 16:20
feedback

Looks like there's no native way to do it, but a quick Google (for "rails reflect validations") turns up this plugin.

link|improve this answer
Thank you, it seems that I need – manzhikov Oct 29 '10 at 12:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.