method
respond_to_missing?
v6.1.7.7 -
Show latest stable
- Class:
ActiveRecord::DynamicMatchers
respond_to_missing?(name, _)private
No documentation available.
# File activerecord/lib/active_record/dynamic_matchers.rb, line 6
def respond_to_missing?(name, _)
if self == Base
super
else
match = Method.match(self, name)
match && match.valid? || super
end
end