method
errors
v6.1.3.1 -
Show latest stable
- Class:
ActiveModel::Validations
errors()public
Returns the Errors object that holds all information about attribute error messages.
class Person include ActiveModel::Validations attr_accessor :name validates_presence_of :name end person = Person.new person.valid? # => false person.errors # => #<ActiveModel::Errors:0x007fe603816640 @messages={name:["can't be blank"]}>