gcloud 0.23.0 → 0.23.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
- SHA1:
3
- metadata.gz: 7f441c58ef8c97a61bdb474f038671ae31f506c2
4
- data.tar.gz: e7ba4d365950e12eef85cdc1d81e41a3a249d4e2
2
+ SHA256:
3
+ metadata.gz: d3cf8ba1dccb9950c803776c918c0985228ab94cb589aed974a5ef388926d832
4
+ data.tar.gz: 03bad25de2fb6d969bd10abe029c3a93fd00e2f7592d75b58e9e05c2d926067d
5
5
  SHA512:
6
- metadata.gz: a5d2f458eaf052c0da0e9e53e0cd4698e860d45ffb25f47a6209a6263f7b744a5bdecb9d07228c6bf068c72139c76247dadf6f346855d56cd4a36fb25a519c58
7
- data.tar.gz: 2cd713d6798682b526aae289fe8ef188fd0d5e00deded1de33e397b936884ec05fd873d0997fe4b33a639934030742a443b2250f7742b121e04c14339a54ad78
6
+ metadata.gz: 5b0a5fbca6bdec5d08d431eddadbe3497cf7e1bfbb43df0ef7748e948b44ecc74e4f061a2800007bd0a57651a4b2c716b0b9aa5c61b81543679ef8aaf27f8c53
7
+ data.tar.gz: 9faf47abc18e200106f806eaefb97c6027d15da35ebbb3ee17ae6cc3fbc1ce12fc88daef447834c6c48852fdb835a90b299dbd17d990f650f1b58df4ef3e6a10
data/.yardopts CHANGED
@@ -1,7 +1,12 @@
1
1
  --no-private
2
2
  --title=Gcloud
3
3
  --markup markdown
4
+ --markup-provider redcarpet
4
5
 
5
6
  ./lib/**/*.rb
6
7
  -
7
8
  README.md
9
+ AUTHENTICATION.md
10
+ CONTRIBUTING.md
11
+ CODE_OF_CONDUCT.md
12
+ LICENSE
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  Apache License
2
2
  Version 2.0, January 2004
3
- http://www.apache.org/licenses/
3
+ https://www.apache.org/licenses/
4
4
 
5
5
  TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
6
 
@@ -192,7 +192,7 @@
192
192
  you may not use this file except in compliance with the License.
193
193
  You may obtain a copy of the License at
194
194
 
195
- http://www.apache.org/licenses/LICENSE-2.0
195
+ https://www.apache.org/licenses/LICENSE-2.0
196
196
 
197
197
  Unless required by applicable law or agreed to in writing, software
198
198
  distributed under the License is distributed on an "AS IS" BASIS,
data/README.md CHANGED
@@ -2,9 +2,14 @@
2
2
 
3
3
  #### The `gcloud` gem and `Gcloud` namespace are now deprecated.
4
4
 
5
- The current `gcloud` gem exists only to facilitate the timely transition of legacy code from the deprecated `Gcloud` namespace to the new `Google::Cloud` namespace. Please see the top-level project [README](../README.md) for current information about using the `google-cloud` umbrella gem and the individual service gems.
6
-
7
- - [gcloud API documentation](http://googlecloudplatform.github.io/google-cloud-ruby/#/docs/master/gcloud)
5
+ The current `gcloud` gem exists only to facilitate the timely transition of
6
+ legacy code from the deprecated `Gcloud` namespace to the new `Google::Cloud`
7
+ namespace. Please see the [GitHub
8
+ repository](https://github.com/GoogleCloudPlatform/google-cloud-ruby) for more
9
+ information about using the `google-cloud` umbrella gem and the individual
10
+ service gems.
11
+
12
+ - [gcloud API documentation](http://googlecloudplatform.github.io/google-cloud-ruby/docs/gcloud/latest)
8
13
  - [gcloud on RubyGems](https://rubygems.org/gems/gcloud)
9
14
 
10
15
  ## Quick Start
@@ -15,7 +20,8 @@ $ gem install gcloud
15
20
 
16
21
  ## Authentication
17
22
 
18
- Instructions and configuration options are covered in the [Authentication Guide](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/gcloud/guides/authentication).
23
+ Instructions and configuration options are covered in the [Authentication
24
+ Guide](https://googlecloudplatform.github.io/google-cloud-ruby/docs/gcloud/latest/file.AUTHENTICATION).
19
25
 
20
26
  ## Example
21
27
 
@@ -33,27 +39,44 @@ end
33
39
 
34
40
  ## Supported Ruby Versions
35
41
 
36
- This library is supported on Ruby 2.0+.
42
+ This library is supported on Ruby 2.3+.
43
+
44
+ Google provides official support for Ruby versions that are actively supported
45
+ by Ruby Core—that is, Ruby versions that are either in normal maintenance or in
46
+ security maintenance, and not end of life. Currently, this means Ruby 2.3 and
47
+ later. Older versions of Ruby _may_ still work, but are unsupported and not
48
+ recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
49
+ about the Ruby support schedule.
37
50
 
38
51
  ## Versioning
39
52
 
40
53
  This library follows [Semantic Versioning](http://semver.org/).
41
54
 
42
- It is currently in major version zero (0.y.z), which means that anything may change at any time and the public API should not be considered stable.
55
+ It is currently in major version zero (0.y.z), which means that anything may
56
+ change at any time and the public API should not be considered stable.
43
57
 
44
58
  ## Contributing
45
59
 
46
60
  Contributions to this library are always welcome and highly encouraged.
47
61
 
48
- See the [Contributing Guide](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/guides/contributing) for more information on how to get started.
62
+ See the [Contributing
63
+ Guide](https://googlecloudplatform.github.io/google-cloud-ruby/docs/gcloud/latest/file.CONTRIBUTING)
64
+ for more information on how to get started.
49
65
 
50
- Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. See [Code of Conduct](../CODE_OF_CONDUCT.md) for more information.
66
+ Please note that this project is released with a Contributor Code of Conduct. By
67
+ participating in this project you agree to abide by its terms. See [Code of
68
+ Conduct](https://googlecloudplatform.github.io/google-cloud-ruby/docs/gcloud/latest/file.CODE_OF_CONDUCT)
69
+ for more information.
51
70
 
52
71
  ## License
53
72
 
54
- This library is licensed under Apache 2.0. Full license text is available in [LICENSE](LICENSE).
73
+ This library is licensed under Apache 2.0. Full license text is available in
74
+ [LICENSE](https://googlecloudplatform.github.io/google-cloud-ruby/docs/gcloud/latest/file.LICENSE).
55
75
 
56
76
  ## Support
57
77
 
58
- Please [report bugs at the project on Github](https://github.com/GoogleCloudPlatform/google-cloud-ruby/issues).
59
- Don't hesitate to [ask questions](http://stackoverflow.com/questions/tagged/google-cloud-platform+ruby) about the client or APIs on [StackOverflow](http://stackoverflow.com).
78
+ Please [report bugs at the project on
79
+ Github](https://github.com/GoogleCloudPlatform/google-cloud-ruby/issues). Don't
80
+ hesitate to [ask
81
+ questions](http://stackoverflow.com/questions/tagged/google-cloud-platform+ruby)
82
+ about the client or APIs on [StackOverflow](http://stackoverflow.com).
@@ -1,10 +1,10 @@
1
- # Copyright 2016 Google Inc. All rights reserved.
1
+ # Copyright 2016 Google LLC
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
5
5
  # You may obtain a copy of the License at
6
6
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # https://www.apache.org/licenses/LICENSE-2.0
8
8
  #
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
@@ -1,10 +1,10 @@
1
- # Copyright 2016 Google Inc. All rights reserved.
1
+ # Copyright 2016 Google LLC
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
5
5
  # You may obtain a copy of the License at
6
6
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # https://www.apache.org/licenses/LICENSE-2.0
8
8
  #
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
@@ -1,10 +1,10 @@
1
- # Copyright 2016 Google Inc. All rights reserved.
1
+ # Copyright 2016 Google LLC
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
5
5
  # You may obtain a copy of the License at
6
6
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # https://www.apache.org/licenses/LICENSE-2.0
8
8
  #
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
@@ -1,10 +1,10 @@
1
- # Copyright 2016 Google Inc. All rights reserved.
1
+ # Copyright 2016 Google LLC
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
5
5
  # You may obtain a copy of the License at
6
6
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # https://www.apache.org/licenses/LICENSE-2.0
8
8
  #
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
@@ -1,10 +1,10 @@
1
- # Copyright 2016 Google Inc. All rights reserved.
1
+ # Copyright 2016 Google LLC
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
5
5
  # You may obtain a copy of the License at
6
6
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # https://www.apache.org/licenses/LICENSE-2.0
8
8
  #
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
@@ -1,10 +1,10 @@
1
- # Copyright 2016 Google Inc. All rights reserved.
1
+ # Copyright 2016 Google LLC
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
5
5
  # You may obtain a copy of the License at
6
6
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # https://www.apache.org/licenses/LICENSE-2.0
8
8
  #
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
@@ -1,10 +1,10 @@
1
- # Copyright 2016 Google Inc. All rights reserved.
1
+ # Copyright 2016 Google LLC
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
5
5
  # You may obtain a copy of the License at
6
6
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # https://www.apache.org/licenses/LICENSE-2.0
8
8
  #
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
@@ -1,10 +1,10 @@
1
- # Copyright 2016 Google Inc. All rights reserved.
1
+ # Copyright 2016 Google LLC
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
5
5
  # You may obtain a copy of the License at
6
6
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # https://www.apache.org/licenses/LICENSE-2.0
8
8
  #
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
@@ -1,10 +1,10 @@
1
- # Copyright 2016 Google Inc. All rights reserved.
1
+ # Copyright 2016 Google LLC
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
5
5
  # You may obtain a copy of the License at
6
6
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # https://www.apache.org/licenses/LICENSE-2.0
8
8
  #
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
@@ -1,10 +1,10 @@
1
- # Copyright 2016 Google Inc. All rights reserved.
1
+ # Copyright 2016 Google LLC
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
5
5
  # You may obtain a copy of the License at
6
6
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # https://www.apache.org/licenses/LICENSE-2.0
8
8
  #
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
@@ -14,5 +14,5 @@
14
14
 
15
15
 
16
16
  module Gcloud
17
- GCLOUD_VERSION = "0.23.0"
17
+ GCLOUD_VERSION = "0.23.1".freeze
18
18
  end
@@ -1,10 +1,10 @@
1
- # Copyright 2016 Google Inc. All rights reserved.
1
+ # Copyright 2016 Google LLC
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
5
5
  # You may obtain a copy of the License at
6
6
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # https://www.apache.org/licenses/LICENSE-2.0
8
8
  #
9
9
  # Unless required by applicable law or agreed to in writing, software
10
10
  # distributed under the License is distributed on an "AS IS" BASIS,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gcloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.23.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-12-09 00:00:00.000000000 Z
12
+ date: 2018-09-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: google-cloud
@@ -31,14 +31,14 @@ dependencies:
31
31
  requirements:
32
32
  - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: '5.9'
34
+ version: '5.10'
35
35
  type: :development
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: '5.9'
41
+ version: '5.10'
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: minitest-autotest
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -95,20 +95,34 @@ dependencies:
95
95
  - - "~>"
96
96
  - !ruby/object:Gem::Version
97
97
  version: '1.1'
98
+ - !ruby/object:Gem::Dependency
99
+ name: redcarpet
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: '3.0'
105
+ type: :development
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - "~>"
110
+ - !ruby/object:Gem::Version
111
+ version: '3.0'
98
112
  - !ruby/object:Gem::Dependency
99
113
  name: rubocop
100
114
  requirement: !ruby/object:Gem::Requirement
101
115
  requirements:
102
- - - "<="
116
+ - - "~>"
103
117
  - !ruby/object:Gem::Version
104
- version: 0.35.1
118
+ version: 0.50.0
105
119
  type: :development
106
120
  prerelease: false
107
121
  version_requirements: !ruby/object:Gem::Requirement
108
122
  requirements:
109
- - - "<="
123
+ - - "~>"
110
124
  - !ruby/object:Gem::Version
111
- version: 0.35.1
125
+ version: 0.50.0
112
126
  - !ruby/object:Gem::Dependency
113
127
  name: simplecov
114
128
  requirement: !ruby/object:Gem::Requirement
@@ -143,14 +157,14 @@ dependencies:
143
157
  requirements:
144
158
  - - "~>"
145
159
  - !ruby/object:Gem::Version
146
- version: 0.1.8
160
+ version: 0.1.13
147
161
  type: :development
148
162
  prerelease: false
149
163
  version_requirements: !ruby/object:Gem::Requirement
150
164
  requirements:
151
165
  - - "~>"
152
166
  - !ruby/object:Gem::Version
153
- version: 0.1.8
167
+ version: 0.1.13
154
168
  description: gcloud is the legacy support library for the new google-cloud library.
155
169
  email:
156
170
  - mike@blowmage.com
@@ -173,7 +187,7 @@ files:
173
187
  - lib/gcloud/translate.rb
174
188
  - lib/gcloud/version.rb
175
189
  - lib/gcloud/vision.rb
176
- homepage: http://googlecloudplatform.github.io/google-cloud-ruby/
190
+ homepage: https://github.com/GoogleCloudPlatform/google-cloud-ruby/tree/master/gcloud
177
191
  licenses:
178
192
  - Apache-2.0
179
193
  metadata: {}
@@ -194,7 +208,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
194
208
  version: '0'
195
209
  requirements: []
196
210
  rubyforge_project:
197
- rubygems_version: 2.4.5.1
211
+ rubygems_version: 2.7.7
198
212
  signing_key:
199
213
  specification_version: 4
200
214
  summary: API Client library for Google Cloud