fix drive example + add debug gems for dev

This commit is contained in:
Ruslan Korolev 2015-08-17 11:44:41 +03:00 committed by rusikf
parent 8daeb2cc1e
commit e8279f40f8
2 changed files with 12 additions and 2 deletions

View File

@ -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
@ -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

View File

@ -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'
@ -22,7 +29,7 @@ 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: 'drive.rb')
file = drive.insert_file({title: 'drive.rb'}, upload_source: __FILE__)
puts "Created file #{file.title} (#{file.id})"
# Search for it
@ -37,4 +44,4 @@ tmp = drive.get_file(file.id, download_dest: Tempfile.new('drive'))
# Delete it
drive.delete_file(file.id)
puts "File deleted"
puts "File deleted"