Sha256: af2c2ddcdf54908cbd0ce209500a75c01f7a91080e689d50c2068fa81264ba5e

Contents?: true

Size: 1.43 KB

Versions: 1

Compression:

Stored size: 1.43 KB

Contents

# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# 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'

Drive = Google::Apis::DriveV2

drive = Drive::DriveService.new
drive.authorization = Google::Auth.get_application_default([Drive::AUTH_DRIVE])

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

# Search for it
files = drive.list_files(q: "title = 'drive.rb'")
puts "Search results:"
files.items.each do |file|
  puts "- File: #{file.title} (#{file.id})"
end

# Read it back
tmp = drive.get_file(file.id, download_dest: Tempfile.new('drive'))

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
google-api-client-0.9.pre4 samples/drive/drive.rb