method

method_missing

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.1.0) is shown here.

method_missing(called, *args, &block)
private

No documentation available.

# File activesupport/lib/active_support/deprecation.rb, line 166
        def method_missing(called, *args, &block)
          warn caller, called, args
          target.__send__(called, *args, &block)
        end