instance method
attribute_present?
Ruby on Rails 3.1.12
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 1804
def attribute_present?(attribute)
!_read_attribute(attribute).blank?
end
Defined in activerecord/lib/active_record/base.rb line 1804
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Base