method
attribute_method?
v5.1.7 -
Show latest stable
- Class:
ActiveModel::Validations::ClassMethods
attribute_method?(attribute)public
Returns true if attribute is an attribute method, false otherwise.
class Person include ActiveModel::Validations attr_accessor :name end User.attribute_method?(:name) # => true User.attribute_method?(:age) # => false