attribute_method?(attribute)
Instance Public methods
Returns true
if attribute
is an attribute method,
false
otherwise.
1 2 3 4 5 6 7 8 | class Person include ActiveModel::Validations attr_accessor :name end User.attribute_method?( :name ) # => true User.attribute_method?( :age ) # => false |
Please login to continue.