class Beatport::Support::Parser

A custom HTTParter parse that underscores the keys of the result

Public Instance Methods

parse() click to toggle source
Calls superclass method
# File lib/beatport/support/parser.rb, line 5
def parse
  Inflector.process_keys(super) { |k| Inflector.underscore(k) }
end