class Discogs::Api::Response

Simple wrapper around a HTTP::Response to easily parse JSON

Public Instance Methods

to_h() click to toggle source
# File lib/discogs/api/response.rb, line 3
def to_h
  JSON.parse(to_s, symbolize_names: true)
end