class EventMachine::Smsified::ResponseProxy

Functions as a proxy on the EventMachine HTTP Response so you can get the raw and parsed response

Attributes

parsed[R]
raw[R]

Public Class Methods

new(parsed, raw) click to toggle source
# File lib/em-smsified/response.rb, line 10
def initialize(parsed, raw)
  @parsed = parsed
  @raw = raw
end