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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 54974651a6886902ca169279b9580ab31d1fa7d6
4
- data.tar.gz: b23c8dd51de8b0cc823cf3c4ff714615529e338a
3
+ metadata.gz: 2f0b0ccf502def04a72e834f3086b4d49067616e
4
+ data.tar.gz: 6911772b6e335e325cb7569d4bc83e2662888974
5
5
  SHA512:
6
- metadata.gz: 24682677fa4cc893f88267a57b26c117203eacbe07a63402121e8c42968d491858928bebd76da399c4245de19071e2900082191f081e872ae79af03a1479fc85
7
- data.tar.gz: 56147fa06688dacd5192023e59ae56234d90dcb3aa3c75352c9ad30fd7f1937a13f9c14b783947f60d3251d000cc9caf365b582fea8336ad19cb269420d079c2
6
+ metadata.gz: 1e2144f96a6afb55b57933f1c5f8603df938a23bdaa778ba7b2bf5c7e1040dc410abf1941d1ee8b2724dce8e7b188372e50f3fef5d18ef2e4c3f50b9bb6d1b96
7
+ data.tar.gz: 747253cd3457c8ec7c9aa909c1927e5e622d49df4baab4649a9a4930b4b8d16666d056cea9056fda78fab43379e093111ea4f180b8b70f4434f44d3c92fcc79e
@@ -2,6 +2,10 @@
2
2
 
3
3
  This is the change history for the appengine gem.
4
4
 
5
+ ## v0.4.3 (2017-09-20)
6
+
7
+ * Fixed incorrect namespace in the handler for gcloud errors.
8
+
5
9
  ## v0.4.2 (2017-09-11)
6
10
 
7
11
  * Fixed file permissions.
@@ -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`
@@ -16,6 +16,6 @@
16
16
  module AppEngine
17
17
 
18
18
  # The current version of this gem, as a string.
19
- VERSION = '0.4.2'.freeze
19
+ VERSION = '0.4.3'.freeze
20
20
 
21
21
  end
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.2
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 00:00:00.000000000 Z
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