Merge pull request #268 from rusikf/patch-1
fix drive example + add debug gems for dev
This commit is contained in:
commit
e76e205162
3
Gemfile
3
Gemfile
|
@ -14,6 +14,8 @@ group :development do
|
||||||
gem 'coveralls', '~> 0.7.11'
|
gem 'coveralls', '~> 0.7.11'
|
||||||
gem 'rubocop', '~> 0.29'
|
gem 'rubocop', '~> 0.29'
|
||||||
gem 'launchy', '~> 2.4'
|
gem 'launchy', '~> 2.4'
|
||||||
|
gem 'dotenv'
|
||||||
|
gem 'pry-doc'
|
||||||
end
|
end
|
||||||
|
|
||||||
platforms :jruby do
|
platforms :jruby do
|
||||||
|
@ -27,6 +29,7 @@ platforms :ruby do
|
||||||
gem 'yard', '~> 0.8'
|
gem 'yard', '~> 0.8'
|
||||||
gem 'redcarpet', '~> 3.2'
|
gem 'redcarpet', '~> 3.2'
|
||||||
gem 'github-markup', '~> 1.3'
|
gem 'github-markup', '~> 1.3'
|
||||||
|
gem 'pry-byebug'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,13 @@
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# 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 'tempfile'
|
||||||
require 'googleauth'
|
require 'googleauth'
|
||||||
require 'google/apis/drive_v2'
|
require 'google/apis/drive_v2'
|
||||||
|
@ -22,7 +29,7 @@ drive = Drive::DriveService.new
|
||||||
drive.authorization = Google::Auth.get_application_default([Drive::AUTH_DRIVE])
|
drive.authorization = Google::Auth.get_application_default([Drive::AUTH_DRIVE])
|
||||||
|
|
||||||
# Insert a file
|
# 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})"
|
puts "Created file #{file.title} (#{file.id})"
|
||||||
|
|
||||||
# Search for it
|
# Search for it
|
||||||
|
@ -37,4 +44,4 @@ tmp = drive.get_file(file.id, download_dest: Tempfile.new('drive'))
|
||||||
|
|
||||||
# Delete it
|
# Delete it
|
||||||
drive.delete_file(file.id)
|
drive.delete_file(file.id)
|
||||||
puts "File deleted"
|
puts "File deleted"
|
||||||
|
|
Loading…
Reference in New Issue