Class: MWS::Feeds::Parsers::FeedSubmissionList

Inherits:
Peddler::Parsers::Collection show all
Includes:
Peddler::Parsers::Tokenable
Defined in:
lib/mws/feeds/parsers/feed_submission_list.rb

Instance Attribute Summary

Attributes inherited from Peddler::Parsers::Base

#document

Instance Method Summary collapse

Methods included from Peddler::Parsers::Tokenable

#has_next_token?, #next_token

Methods inherited from Peddler::Parsers::Collection

#empty?, #inspect

Methods inherited from Peddler::Parsers::XML

#at_xpath, #text_at_xpath, xml?, #xpath

Methods inherited from Peddler::Parsers::Base

#initialize, xml?

Constructor Details

This class inherits a constructor from Peddler::Parsers::Base

Instance Method Details

#each(&blk) ⇒ Object



11
12
13
# File 'lib/mws/feeds/parsers/feed_submission_list.rb', line 11

def each(&blk)
  feed_submission_info_nodes.each { |node| yield FeedSubmissionInfo.new(node) }
end