class method
self.respond_to_missing?
Ruby on Rails 8.1.2
Since v5.2.8.1 PrivateSignature
self.respond_to_missing?(method, include_all = false)
No documentation comment.
Parameters
-
methodreq -
include_allopt = false
Source
# File actionmailer/lib/action_mailer/base.rb, line 632
def respond_to_missing?(method, include_all = false)
action_methods.include?(method.name) || super
end
Defined in actionmailer/lib/action_mailer/base.rb line 632
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionMailer::Base