Class: Chargify::Parser

Inherits:
HTTParty::Parser
  • Object
show all
Defined in:
lib/chargify/parser.rb

Instance Method Summary collapse

Instance Method Details

#parseObject



6
7
8
9
10
11
12
# File 'lib/chargify/parser.rb', line 6

def parse
  begin
    ::Crack::JSON.parse(body)
  rescue => e
    raise(Chargify::Error::UnexpectedResponse.new(e.message), body)
  end
end