Flowdock
method

each_full

Importance_1
v2.3.8 - Show latest stable - 0 notes - Class: ActiveRecord::Errors
each_full() public

Yields each full error message added. So Person.errors.add("first_name", "can't be empty") will be returned through iteration as "First name can’t be empty".

  class Company < ActiveRecord::Base
    validates_presence_of :name, :address, :email
    validates_length_of :name, :in => 5..30
  end

  company = Company.create(:address => '123 First St.')
  company.errors.each_full{|msg| puts msg }
  # => Name is too short (minimum is 5 characters)
  #    Name can't be blank
  #    Address can't be blank
Show source
Register or log in to add new notes.