method
method_missing
v6.0.0 -
Show latest stable
- Class:
ActiveSupport::Deprecation::DeprecationProxy
method_missing(called, *args, &block)private
No documentation available.
# File activesupport/lib/active_support/deprecation/proxy_wrappers.rb, line 22
def method_missing(called, *args, &block)
warn caller_locations, called, args
target.__send__(called, *args, &block)
end