Flowdock
method

rack_response

Importance_0
rack_response(status, headers) private

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_dispatch/http/response.rb, line 534
    def rack_response(status, headers)
      if NO_CONTENT_CODES.include?(status)
        [status, headers, []]
      else
        [status, headers, RackBody.new(self)]
      end
    end
Register or log in to add new notes.