method

process

rails latest stable - Class: ActionController::Middleware

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v4.2.9) is shown here.

process(action)
public

No documentation available.

# File actionpack/lib/action_controller/middleware.rb, line 24
    def process(action)
      response = super
      self.status, self.headers, self.response_body = response if response.is_a?(Array)
      response
    end