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 +5 -5
- data/.yardopts +5 -0
- data/LICENSE +2 -2
- data/README.md +34 -11
- data/lib/gcloud.rb +2 -2
- data/lib/gcloud/bigquery.rb +2 -2
- data/lib/gcloud/datastore.rb +2 -2
- data/lib/gcloud/dns.rb +2 -2
- data/lib/gcloud/logging.rb +2 -2
- data/lib/gcloud/pubsub.rb +2 -2
- data/lib/gcloud/resource_manager.rb +2 -2
- data/lib/gcloud/storage.rb +2 -2
- data/lib/gcloud/translate.rb +2 -2
- data/lib/gcloud/version.rb +3 -3
- data/lib/gcloud/vision.rb +2 -2
- metadata +26 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: d3cf8ba1dccb9950c803776c918c0985228ab94cb589aed974a5ef388926d832
|
|
4
|
+
data.tar.gz: 03bad25de2fb6d969bd10abe029c3a93fd00e2f7592d75b58e9e05c2d926067d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b0a5fbca6bdec5d08d431eddadbe3497cf7e1bfbb43df0ef7748e948b44ecc74e4f061a2800007bd0a57651a4b2c716b0b9aa5c61b81543679ef8aaf27f8c53
|
|
7
|
+
data.tar.gz: 9faf47abc18e200106f806eaefb97c6027d15da35ebbb3ee17ae6cc3fbc1ce12fc88daef447834c6c48852fdb835a90b299dbd17d990f650f1b58df4ef3e6a10
|
data/.yardopts
CHANGED
data/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Apache License
|
|
2
2
|
Version 2.0, January 2004
|
|
3
|
-
|
|
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
|
-
|
|
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
|
|
6
|
-
|
|
7
|
-
|
|
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
|
|
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.
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
59
|
-
|
|
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).
|
data/lib/gcloud.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Copyright 2016 Google
|
|
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
|
-
#
|
|
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,
|
data/lib/gcloud/bigquery.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Copyright 2016 Google
|
|
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
|
-
#
|
|
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,
|
data/lib/gcloud/datastore.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Copyright 2016 Google
|
|
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
|
-
#
|
|
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,
|
data/lib/gcloud/dns.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Copyright 2016 Google
|
|
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
|
-
#
|
|
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,
|
data/lib/gcloud/logging.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Copyright 2016 Google
|
|
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
|
-
#
|
|
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,
|
data/lib/gcloud/pubsub.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Copyright 2016 Google
|
|
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
|
-
#
|
|
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
|
|
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
|
-
#
|
|
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,
|
data/lib/gcloud/storage.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Copyright 2016 Google
|
|
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
|
-
#
|
|
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,
|
data/lib/gcloud/translate.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Copyright 2016 Google
|
|
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
|
-
#
|
|
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,
|
data/lib/gcloud/version.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Copyright 2016 Google
|
|
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
|
-
#
|
|
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.
|
|
17
|
+
GCLOUD_VERSION = "0.23.1".freeze
|
|
18
18
|
end
|
data/lib/gcloud/vision.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Copyright 2016 Google
|
|
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
|
-
#
|
|
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.
|
|
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:
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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:
|
|
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.
|
|
211
|
+
rubygems_version: 2.7.7
|
|
198
212
|
signing_key:
|
|
199
213
|
specification_version: 4
|
|
200
214
|
summary: API Client library for Google Cloud
|