class HTTParty::Response

:nodoc:

def initialize(delegate, body, code, message, headers={})

def initialize(delegate, body, code, message, headers={})
  @delegate = delegate
  @body = body
  @code = code.to_i
  @message = message
  @headers = headers
end

def method_missing(name, *args, &block)

def method_missing(name, *args, &block)
  @delegate.send(name, *args, &block)
end