method
method_missing

Ruby on Rails latest stable (v7.1.3.2)
-
0 notes -
Class: ActiveSupport::Deprecation::DeprecationProxy
method_missing(called, *args, &block)
private
Hide source
# 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