Skip to content

Commit

Permalink
fix drive example + add debug gems for dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruslan Korolev committed Aug 19, 2015
1 parent 8daeb2c commit e8279f4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ group :development do
gem 'coveralls', '~> 0.7.11'
gem 'rubocop', '~> 0.29'
gem 'launchy', '~> 2.4'
gem 'dotenv'
gem 'pry-doc'
end

platforms :jruby do
Expand All @@ -27,6 +29,7 @@ platforms :ruby do
gem 'yard', '~> 0.8'
gem 'redcarpet', '~> 3.2'
gem 'github-markup', '~> 1.3'
gem 'pry-byebug'
end
end

Expand Down
11 changes: 9 additions & 2 deletions samples/drive/drive.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# Pass all auth variables to .env file
# Read more about auth on https://developers.google.com/drive/web/about-auth
# For example, in my case I added GOOGLE_APPLICATION_CREDENTIALS=credentials.json

require 'dotenv'
Dotenv.load

require 'tempfile'
require 'googleauth'
require 'google/apis/drive_v2'
Expand All @@ -22,7 +29,7 @@
drive.authorization = Google::Auth.get_application_default([Drive::AUTH_DRIVE])

# Insert a file
file = drive.insert_file({title: 'drive.rb'}, upload_source: 'drive.rb')
file = drive.insert_file({title: 'drive.rb'}, upload_source: __FILE__)
puts "Created file #{file.title} (#{file.id})"

# Search for it
Expand All @@ -37,4 +44,4 @@

# Delete it
drive.delete_file(file.id)
puts "File deleted"
puts "File deleted"

0 comments on commit e8279f4

Please sign in to comment.