Fosome / garb

A Ruby wrapper for the Google Analytics API
http://www.viget.com/extend/
654 stars 89 forks source link

Added an enumerator over all results. #116

Open dblock opened 12 years ago

dblock commented 12 years ago

This lets you paginate over all results, not just the last 1000.

Pageviews.all(profile) do |row|
  puts "#{row.page_path} => #{row.pageviews}"
end

Note that the :limit option applies to the total result.

dblock commented 9 years ago

@Fosome This is old, do you want it? I'll rebase if you do.