Flowdock
method

dispatch_cgi

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: ActionController::Dispatcher
dispatch_cgi(cgi, session_options) 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 116
    def dispatch_cgi(cgi, session_options)
      if cgi ||= self.class.failsafe_response(@output, '400 Bad Request') { CGI.new }
        @request = CgiRequest.new(cgi, session_options)
        @response = CgiResponse.new(cgi)
        dispatch
      end
    rescue Exception => exception
      failsafe_rescue exception
    end
Register or log in to add new notes.