method
rack_response
v5.0.0.1 -
Show latest stable
- Class:
ActionDispatch::Response
rack_response(status, header)private
No documentation available.
# File actionpack/lib/action_dispatch/http/response.rb, line 501
def rack_response(status, header)
if NO_CONTENT_CODES.include?(status)
[status, header, []]
else
[status, header, RackBody.new(self)]
end
end