class Falcon::Adapters::Response
def self.wrap(status, headers, body)
def self.wrap(status, headers, body) headers = wrap_headers(headers) headers.add('server', "falcon/#{Falcon::VERSION}") headers.add('date', Time.now.httpdate) body = Output.wrap(status, headers, body) return self.new(status, headers, body) end