class Restforce::Collection

def each

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