method
respond_to_missing?
v8.1.1 -
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
super || begin
match = Method.match(name)
match && match.valid?(self, name)
end
end
end