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

Inherits:
Peddler::Parsers::Collection show all
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 inherited from Peddler::Parsers::Collection

#empty?, #inspect

Methods inherited from Peddler::Parsers::XML

#at_xpath, handle?, #xpath

Methods inherited from Peddler::Parsers::Base

handle?, #initialize

Constructor Details

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

Instance Method Details

#each(&blk) ⇒ Object



8
9
10
# File 'lib/mws/feeds/parsers/feed_submission_list.rb', line 8

def each(&blk)
  feed_submission_nodes.each { |node| yield FeedSubmission.new(node) }
end