google / google-api-ruby-client-samples

Samples for the Google API Ruby Client
327 stars 164 forks source link

file_storage not exists within api client gem #5

Closed Deele closed 10 years ago

Deele commented 10 years ago

Just tried calendar connection sample and noticed that in current api client gem (google-api-client-0.6.4) does not contain google/api_client/auth/file_storage library, that leads to being unable to use sample out of box.

sgomes commented 10 years ago

Hey Deele,

The samples in master are meant to be run against the master branch of the API client library, which is why you'll find features which aren't part of the 0.6.x releases.

You can either use the 0.7.0rc2 version of the gem or check out the samples from the 0.6 branch instead.

narath commented 10 years ago

Had the same issue, fixed as described above by updating my Gemfile

gem 'google-api-client', '>= 0.7.0rc2'

sgomes commented 10 years ago

The latest release fixes this.