Hey Guys,
I am wondering if there is a way to read validation attributes from an
activerecord model.
For example: I write
validates_presence_of :user, :email, :password
Can I access these attributes as an array in runtime?
[‘user’, ‘email’, ‘password’]
Anup