method
method_missing
v8.1.1 -
Show latest stable
- Class:
ActiveRecord::DynamicMatchers
method_missing(name, ...)private
No documentation available.
# File activerecord/lib/active_record/dynamic_matchers.rb, line 17
def method_missing(name, ...)
match = Method.match(name)
if match && match.valid?(self, name)
match.define(self, name)
send(name, ...)
else
super
end
end