google_drive 2.1.0 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6fa325ec359ec66d6e6ee9260d96d204249c8b62
4
- data.tar.gz: cc7719032cb68583fd38f69ad59b11a7c5a4f494
3
+ metadata.gz: fff5ef1112cf60c78cc1cbd54372ec34a87e3aad
4
+ data.tar.gz: 5448d5cba8278598b46b432e1b5e812ac33e0f87
5
5
  SHA512:
6
- metadata.gz: 23434caab95532f6739a88ebba51e2a9aadcf16131dbd28a5df23795ef3d7cb86b9fb4d0778acec63d4a28e94f2b4eb867e1761e4dd4226849b731661113beb9
7
- data.tar.gz: 8ed3cf51a8f2799f7abb45e61271fa7f2b78129e51e4604edbc3fdd0e409b83a6e7037c9bb6fdc0ebc3494e0f98066b65103859353ca9bf91084443637cdf0cd
6
+ metadata.gz: ffc511d0d0aba64d4510753abde1fac34fc4940bfc6233d04c0bd4093b3af53ae4c663aba856032b09e11300b10a7b31130dad7638abfb982b6e1a5d6aa3b8c5
7
+ data.tar.gz: 076cf4ceeaec5fb63ea8374a940c091544a413ca8c7cd5604d5a2cc642715e2f3513fb641230c560371d89bda2fb1a70d014631030ff2038c3be31b4d7fe9b41
data/README.md CHANGED
@@ -39,7 +39,7 @@ $ sudo gem install google_drive
39
39
 
40
40
  ### Authorization
41
41
 
42
- Follow one of the options in [Authorization](https://github.com/gimite/google-drive-ruby/doc/authorization.md) to construct a session object. The example code below assumes "On behalf of you" option.
42
+ Follow one of the options in [Authorization](https://github.com/gimite/google-drive-ruby/blob/master/doc/authorization.md) to construct a session object. The example code below assumes "On behalf of you" option.
43
43
 
44
44
  ### Example to read/write files in Google Drive
45
45
 
@@ -44,7 +44,7 @@ module GoogleDrive
44
44
  # Constructs a GoogleDrive::Session object from OAuth2 credentials such as
45
45
  # Google::Auth::UserRefreshCredentials.
46
46
  #
47
- # See https://github.com/gimite/google-drive-ruby/doc/authorization.md for a usage example.
47
+ # See https://github.com/gimite/google-drive-ruby/blob/master/doc/authorization.md for a usage example.
48
48
  def self.from_credentials(credentials)
49
49
  Session.new(credentials)
50
50
  end
@@ -58,7 +58,7 @@ module GoogleDrive
58
58
  #
59
59
  # You can pass either the path to a JSON file, or an IO-like object with the JSON.
60
60
  #
61
- # See https://github.com/gimite/google-drive-ruby/doc/authorization.md for a usage example.
61
+ # See https://github.com/gimite/google-drive-ruby/blob/master/doc/authorization.md for a usage example.
62
62
  def self.from_service_account_key(json_key_path_or_io, scope = DEFAULT_SCOPE)
63
63
  if json_key_path_or_io.is_a?(String)
64
64
  open(json_key_path_or_io) do |f|
@@ -78,7 +78,7 @@ module GoogleDrive
78
78
  # This will prompt the credential via command line for the first time and save it to
79
79
  # +config+ for later usages.
80
80
  #
81
- # See https://github.com/gimite/google-drive-ruby/doc/authorization.md for a usage example.
81
+ # See https://github.com/gimite/google-drive-ruby/blob/master/doc/authorization.md for a usage example.
82
82
  #
83
83
  # You can also provide a config object that must respond to:
84
84
  # client_id
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google_drive
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroshi Ichikawa