This gem is based on Garb version 0.9.1 - http://github.com/vigetlabs/garb It is forked from RubyGems as v0.9.1 was missing in Github.
Using Google Analytics API v2.4 . Main Difference from the official version of Garb is that this is looding all the Profiles and/or Accounts for a login . Garb has a limit of 1000 which is the default Google Abalytics limit.
Provides a Ruby API to the Google Analytics API v2.4
https://developers.google.com/analytics/devguides/config/mgmt/v2/
> Garb::Session.login(username, password)
> Garb::Session.access_token = access_token # assign from oauth gem
> Garb::Management::Account.all
> Garb::Management::WebProperty.all
> Garb::Management::Profile.all
> Garb::Management::Goal.all
> profile = Garb::Management::Profile.all.detect {|p| p.web_property_id == 'UA-XXXXXXX-X'}
class Exits
extend Garb::Model
metrics :exits, :pageviews
dimensions :page_path
end
> Exits.results(profile, :filters => {:page_path.eql => '/'})
OR shorthand
> profile.exits(:filters => {:page_path.eql => '/'})
Be forewarned, these numbers are for the last 30 days and may be slightly different from the numbers displayed in Google Analytics' dashboard for 1 month.
- start_date: The date of the period you would like this report to start
- end_date: The date to end, inclusive
- limit: The maximum number of results to be returned
- offset: The starting index
Metrics and Dimensions are very complex because of the ways in which they can and cannot be combined.
I suggest reading the google documentation to familiarize yourself with this.
http://code.google.com/apis/analytics/docs/gdata/gdataReferenceDimensionsMetrics.html#bounceRate
When you've returned, you can pass the appropriate combinations to Garb, as symbols.
Google Analytics supports a significant number of filtering options.
http://code.google.com/apis/analytics/docs/gdata/gdataReference.html#filtering
Here is what we can do currently: (the operator is a method on a symbol for the appropriate metric or dimension)
Operators on metrics:
eql => '==',
not_eql => '!=',
gt => '>',
gte => '>=',
lt => '<',
lte => '<='
Operators on dimensions:
matches => '==',
does_not_match => '!=',
contains => '=~',
does_not_contain => '!~',
substring => '=@',
not_substring => '!@'
Given the previous Exits example report in shorthand, we can add an option for filter:
profile.exits(:filters => {:page_path.eql => '/extend/effectively-using-git-with-subversion/')
Version 0.2.3 includes support for real ssl encryption for SINGLE USER authentication. First do:
Garb::Session.login(username, password, :secure => true)
Next, be sure to download http://curl.haxx.se/ca/cacert.pem into your application somewhere. Then, define a constant CA_CERT_FILE and point to that file.
For whatever reason, simply creating a new certificate store and setting the defaults would not validate the google ssl certificate as authentic.
- crack >= 0.1.6
- active_support >= 2.2.0
- shoulda
- jferris-mocha
Add this to your Gemfile:
gem 'better_garb', git: "https://github.com/velles/better_garb.git"
and run in your project
bundle install
Many Thanks, for all their help, goes to:
- Tony Pitale - original author
- Patrick Reagan
- Justin Marney
- Nick Plante
(The MIT License)
Copyright (c) 2010 Viget Labs
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.