Flowdock
method

dispatch

Importance_0
v2.0.3 - Show latest stable - 0 notes - Class: ActionController::Dispatcher
dispatch() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_controller/dispatcher.rb, line 113
    def dispatch
      run_callbacks :before
      handle_request
    rescue Exception => exception
      failsafe_rescue exception
    ensure
      run_callbacks :after, :reverse_each
    end
Register or log in to add new notes.