instance method
attribute_present?
Ruby on Rails 2.3.18
Since v2.2.3 Last seen in v3.1.12Signature
attribute_present?(attribute)
Returns true if the specified attribute has been set by the user or by a database load and is neither nil nor empty? (the latter only applies to objects that respond to empty?, most notably Strings).
Parameters
-
attributereq
Source
# File activerecord/lib/active_record/base.rb, line 2840
def attribute_present?(attribute)
value = read_attribute(attribute)
!value.blank?
end
Defined in activerecord/lib/active_record/base.rb line 2840
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Base