class Restforce::Collection

def each

Yield each value on each page.
def each
  @raw_page['records'].each { |record| yield Restforce::Mash.build(record, @client) }
  next_page.each { |record| yield record } if has_next_page?
end