instance method
respond_to_missing?
Ruby on Rails edge
Since v8.1.3.1 Private — implementation detail, not part of the public APIAvailable in: v8.1.3.1 edge
Signature
respond_to_missing?(method, include_private = false)
No documentation comment.
Parameters
-
methodreq -
include_privateopt = false
Source
# File activerecord/lib/active_record/migration.rb, line 1190
def respond_to_missing?(method, include_private = false)
execution_strategy.respond_to?(method, include_private) || super
end
Defined in activerecord/lib/active_record/migration.rb line 1190
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Migration