class ActionDispatch::Response

def to_a

status, headers, body = *response

and body. Allows explicit splatting:
Turns the Response into a Rack-compatible array of the status, headers,
def to_a
  commit!
  rack_response @status, @header.to_hash
end