method
dispatch
v2.0.3 -
Show latest stable
- Class:
ActionController::Dispatcher
dispatch()public
No documentation available.
# 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