Module: Gattica
- Defined in:
- lib/gattica.rb,
lib/gattica/auth.rb,
lib/gattica/user.rb,
lib/gattica/account.rb,
lib/gattica/data_set.rb,
lib/gattica/data_point.rb,
lib/gattica/convertible.rb
Overview
Gattica is a Ruby library for talking to the Google Analytics API.
Please see the README for usage docs.
Defined Under Namespace
Modules: Convertible Classes: Account, Auth, DataPoint, DataSet, Engine, User
Constant Summary collapse
- VERSION =
'0.4.3'
Class Method Summary collapse
-
.new(*args) ⇒ Object
Creates a new instance of Gattica::Engine and gets us going.
Class Method Details
.new(*args) ⇒ Object
Creates a new instance of Gattica::Engine and gets us going. Please see the README for usage docs.
ga = Gattica.new({:email => '[email protected]', :password => 'password, :profile_id => 123456 })
35 36 37 |
# File 'lib/gattica.rb', line 35 def self.new(*args) Engine.new(*args) end |