method
respond_to_missing?
v5.1.7 -
Show latest stable
- Class:
ActiveRecord::DynamicMatchers
respond_to_missing?(name, include_private = false)public
No documentation available.
# File activerecord/lib/active_record/dynamic_matchers.rb, line 4
def respond_to_missing?(name, include_private = false)
if self == Base
super
else
match = Method.match(self, name)
match && match.valid? || super
end
end