method

method_missing

rails latest stable - Class: ActiveSupport::Deprecation::DeprecatedConstantProxy
method_missing(called, *args, &block)
private

No documentation available.

# File activesupport/lib/active_support/deprecation/proxy_wrappers.rb, line 186
        def method_missing(called, *args, &block)
          @deprecator.warn(@message, caller_locations)
          target.__send__(called, *args, &block)
        end