public Method

Runner.method_missing(sym, *args, &block)

Delegate unhandled messages to the current session instance.

Source Code

# File action_controller/integration.rb, line 447
def method_missing(sym, *args, &block)
  reset! unless @integration_session
  returning @integration_session.send!(sym, *args, &block) do
    copy_session_variables!
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.