instance method
respond_to_missing?
Ruby on Rails 5.2.8.1
Since v4.0.13Signature
respond_to_missing?(method, include_private)
Returns true if obj responds to the given method. Private methods are included in the search only if the optional second parameter evaluates to true.
Parameters
-
methodreq -
include_privatereq
Source
# File activesupport/lib/active_support/multibyte/chars.rb, line 73
def respond_to_missing?(method, include_private)
@wrapped_string.respond_to?(method, include_private)
end
Defined in activesupport/lib/active_support/multibyte/chars.rb line 73
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Multibyte::Chars