instance method
add_on_empty
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.3.18Available 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
-
attributesreq -
custom_messageopt = nil
Source
# File activerecord/lib/active_record/validations.rb, line 54
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 54
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Errors