method
to_a
to_a()
public
Hide source
# File activemodel/lib/active_model/errors.rb, line 55 def to_a inject([]) do |errors_with_attributes, (attribute, errors)| if error.blank? errors_with_attributes else if attr == :base errors_with_attributes << error else errors_with_attributes << (attribute.to_s.humanize + " " + error) end end end end