instance method method_missing

Ruby on Rails 2.3.18

Last seen in v2.3.18

Available in: v2.2.3 v2.3.18

Signature

method_missing(sym, *args, &block)

Delegate unhandled messages to the current session instance.

Parameters

sym req
args rest
block block
Source
# File actionpack/lib/action_controller/integration.rb, line 568
      def method_missing(sym, *args, &block)
        reset! unless @integration_session
        if @integration_session.respond_to?(sym)
          @integration_session.__send__(sym, *args, &block).tap do
            copy_session_variables!
          end
        else
          super
        end
      end

Defined in actionpack/lib/action_controller/integration.rb line 568 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActionController::Integration::Runner

Type at least 2 characters to search.

Use the arrow keys to navigate results, Enter to open one, Escape to close.

Keyboard shortcuts

/
Focus search
⌘K / Ctrl-K
Command palette
?
This help
Esc
Close