instance method
method_missing
Ruby on Rails 8.1.2
Since v3.1.12 PrivateSignature
method_missing(method, ...)
Forwards any missing method call to the \target.
Parameters
-
methodreq -
...req
Source
# File activerecord/lib/active_record/migration/command_recorder.rb, line 413
def method_missing(method, ...)
if delegate.respond_to?(method)
delegate.public_send(method, ...)
else
super
end
end
Defined in activerecord/lib/active_record/migration/command_recorder.rb line 413
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Migration::CommandRecorder