respond_to_without_attributes?(method, include_private_methods = false)
Instance Public methods
A Person
instance with a
name
attribute can ask person.respond_to?(:name)
,
person.respond_to?(:name=)
, and
person.respond_to?(:name?)
which will all return
true
.
Please login to continue.