= private = protected
to_a()
Returns an array of error messages, with the attribute name included.
person.errors.add(:name, "can't be blank") person.errors.add(:name, "must be specified") person.errors.to_a # => ["name can't be blank", "name must be specified"]
# File activemodel/lib/active_model/errors.rb, line 198 def to_a full_messages end