instance method add_on_empty

Ruby on Rails 2.3.18

Since v2.2.3 Last seen in v2.3.18

Available in: v2.2.3 v2.3.18

Signature

add_on_empty(attributes, custom_message = nil)

Will add an error message to each of the attributes in attributes that is empty.

Parameters

attributes req
custom_message opt = nil
Source
# File activerecord/lib/active_record/validations.rb, line 169
    def add_on_empty(attributes, custom_message = nil)
      for attr in [attributes].flatten
        value = @base.respond_to?(attr.to_s) ? @base.send(attr.to_s) : @base[attr.to_s]
        is_empty = value.respond_to?(:empty?) ? value.empty? : false
        add(attr, :empty, :default => custom_message) unless !value.nil? && !is_empty
      end
    end

Defined in activerecord/lib/active_record/validations.rb line 169 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActiveRecord::Errors

Type at least 2 characters to search.

↑↓ navigate · open · esc close