appengine 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/appengine/tasks.rb +3 -3
- data/lib/appengine/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f0b0ccf502def04a72e834f3086b4d49067616e
|
4
|
+
data.tar.gz: 6911772b6e335e325cb7569d4bc83e2662888974
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e2144f96a6afb55b57933f1c5f8603df938a23bdaa778ba7b2bf5c7e1040dc410abf1941d1ee8b2724dce8e7b188372e50f3fef5d18ef2e4c3f50b9bb6d1b96
|
7
|
+
data.tar.gz: 747253cd3457c8ec7c9aa909c1927e5e622d49df4baab4649a9a4930b4b8d16666d056cea9056fda78fab43379e093111ea4f180b8b70f4434f44d3c92fcc79e
|
data/CHANGELOG.md
CHANGED
data/lib/appengine/tasks.rb
CHANGED
@@ -225,20 +225,20 @@ https://github.com/GoogleCloudPlatform/appengine-ruby
|
|
225
225
|
|
226
226
|
def verify_gcloud_and_report_errors
|
227
227
|
Util::Gcloud.verify!
|
228
|
-
rescue Gcloud::BinaryNotFound
|
228
|
+
rescue Util::Gcloud::BinaryNotFound
|
229
229
|
report_error <<-MESSAGE
|
230
230
|
Could not find the `gcloud` binary in your system path.
|
231
231
|
This tool requires the Google Cloud SDK. To download and install it,
|
232
232
|
visit https://cloud.google.com/sdk/downloads
|
233
233
|
MESSAGE
|
234
|
-
rescue Gcloud::GcloudNotAuthenticated
|
234
|
+
rescue Util::Gcloud::GcloudNotAuthenticated
|
235
235
|
report_error <<-MESSAGE
|
236
236
|
The gcloud authorization has not been completed. If you have not yet
|
237
237
|
initialized the Google Cloud SDK, we recommend running the `gcloud init`
|
238
238
|
command as described at https://cloud.google.com/sdk/docs/initializing
|
239
239
|
Alternately, you may log in directly by running `gcloud auth login`.
|
240
240
|
MESSAGE
|
241
|
-
rescue Gcloud::ProjectNotSet
|
241
|
+
rescue Util::Gcloud::ProjectNotSet
|
242
242
|
report_error <<-MESSAGE
|
243
243
|
The gcloud project configuration has not been set. If you have not yet
|
244
244
|
initialized the Google Cloud SDK, we recommend running the `gcloud init`
|
data/lib/appengine/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appengine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Azuma
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-09-
|
11
|
+
date: 2017-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-cloud-env
|