aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_controller/new_base/rack_convenience.rb
blob: 0422ab2f1415593620f7b77c90bf9a0f0b65a2fd (plain) (tree)

































                                                                     
module ActionController
  module RackConvenience
    extend ActiveSupport::DependencyModule
    
    included do
      delegate :headers, :status=, :location=, 
               :status, :location, :content_type, :to => "@_response"
      attr_internal :request, :response
    end
    
    def call(name, env)
      @_request = ActionDispatch::Request.new(env)
      @_response = ActionDispatch::Response.new
      @_response.request = request
      super
    end
    
    def params
      @_params ||= @_request.parameters
    end
    
    # :api: private
    def to_rack
      @_response.prepare!
      @_response.to_a
    end
    
    def response_body=(body)
      response.body = body if response
      super
    end
    
  end
end