class ActionDispatch::HostAuthorization::DefaultResponseApp

def response(format, body)

def response(format, body)
  [RESPONSE_STATUS,
   { "Content-Type" => "#{format}; charset=#{Response.default_charset}",
     "Content-Length" => body.bytesize.to_s },
   [body]]
end