Sha256: d4b045b2ea5b96ea088380fa153ec67e296dcc554a4f21bfbcbf0c6a43ec0bf0
Contents?: true
Size: 793 Bytes
Versions: 4
Compression:
Stored size: 793 Bytes
Contents
require 'peddler/flat_file_parser' require 'peddler/xml_parser' module Peddler # @api private module Parser class << self # The inevitable messiness of massaging data produced by a motley army of # Amazon developers def new(res, encoding = 'ISO-8859-1') # Don't parse if there's no body return res unless res.body content_type = res.headers['Content-Type'] if content_type.start_with?('text/xml') XMLParser.new(res) else # Amazon returns a variety of content types for flat files, so we # simply assume that anything not XML is a flat file rather than code # defensively and check content type again. FlatFileParser.new(res, encoding) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
peddler-0.16.0 | lib/peddler/parser.rb |
peddler-0.15.0 | lib/peddler/parser.rb |
peddler-0.14.0 | lib/peddler/parser.rb |
peddler-0.13.0 | lib/peddler/parser.rb |