The GoogleApis Ruby Gem

Gem Version Build Status Dependency Status Code Climate Coverage Status

Provides client libraries for Google APIs

Installation

Add this line to your application's Gemfile:

gem 'google_apis'

And then execute:

$ bundle

Or install it yourself as:

$ gem install google_apis

Basic Usage

To make a request, you need to construct a service client, for example with Freebase (http://www.freebase.com)

freebase = GoogleAPIS::Freebase.new
freebase = GoogleAPIS.freebase # helper method returns a new client

Contributing

  1. Fork it ( http://github.com/zywx/google_apis/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request