Guest User

Untitled

a guest
Apr 23rd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. require 'garb'
  2. username = 'foo'
  3. password = 'bar'
  4. Garb::Session.login(username, password)
  5. profile = Garb::Profile.all.select{ |p| p.title == 'foobar' }.first
  6. options = {
  7. :metrics => [ :visits ],
  8. :dimensions => [ :date ]
  9. }
  10. report = Garb::Report.new(profile, options)
  11. results = report.results
Add Comment
Please, Sign In to add comment