dpl 1.8.26.travis.1777.3 → 1.8.26.travis.1779.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/dpl/provider/gae.rb +2 -2
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 607c811d9349e70f038e41c493f8371c7d335158
4
- data.tar.gz: 02c610c3c4e9786bd0bb545d435b9186c4212a63
3
+ metadata.gz: 0b7589c81b3ed77c037d537bdd8d0c1294fb4200
4
+ data.tar.gz: bc8a720fd2a317611d11196d00d044b919190f4f
5
5
  SHA512:
6
- metadata.gz: aeaf7fe17dfc67bfeea54bd9bb8038f58b8d5aea82332d2ebc6c3a3a9bbe35d964eceba9fc45967673d7f602a967b7719bae039e74ac1e3d82eced13c31e0d37
7
- data.tar.gz: 8adf8240a6edb78c3da1cb8d15c9ad86cdf0ba76c1e67a8d40941f0f07b87d3f8c260ab834bd6b8a9180e21aa9806530e100a814b714a55290e4466394c8aab2
6
+ metadata.gz: a23a789fdc2cc490eb21e6001d0949619fd1002c539a54ed78b9c178d3e8910364828adc57042e7be2483b799a0dfe9211684dc921fa906f7b0d5d6a90d89ee1
7
+ data.tar.gz: 93b0459b9e11df8578bc544bc9e5e28a1049ee1354239cbb81fdc945c163b79bbd9a8acce83c2516da8a7112a2ee7b9bc547701489043e7ecc36a6096ad37e5f
data/README.md CHANGED
@@ -319,7 +319,7 @@ For authentication you can also use Travis CI secure environment variable:
319
319
  * **region**: S3 Region. Defaults to us-east-1.
320
320
  * **upload-dir**: S3 directory to upload to. Defaults to root directory.
321
321
  * **storage-class**: S3 storage class to upload as. Defaults to "STANDARD". Other values are "STANDARD_IA" or "REDUCED_REDUNDANCY". Details can be found [here](https://aws.amazon.com/s3/storage-classes/).
322
- * **server-side-encryption**: When set to `true`, use S3 Server Side Encryption (SSE-AES256). Defaults to non-encrypted.
322
+ * **server-side-encryption**: When set to `true`, use S3 Server Side Encryption (SSE-AES256). Defaults to `false`.
323
323
  * **local-dir**: Local directory to upload from. Can be set from a global perspective (~/travis/build) or relative perspective (build) Defaults to project root.
324
324
  * **detect-encoding**: Set HTTP header `Content-Encoding` for files compressed with `gzip` and `compress` utilities. Defaults to not set.
325
325
  * **cache_control**: Set HTTP header `Cache-Control` to suggest that the browser cache the file. Defaults to `no-cache`. Valid options are `no-cache`, `no-store`, `max-age=<seconds>`,`s-maxage=<seconds>` `no-transform`, `public`, `private`.
@@ -72,9 +72,9 @@ module DPL
72
72
  command << " --verbosity \"#{verbosity}\""
73
73
  command << " --project \"#{project}\""
74
74
  command << " app deploy \"#{config}\""
75
- command << (version ? " --version \"#{version}\"" : '')
75
+ command << " --version \"#{version}\"" unless version.to_s.empty?
76
76
  command << " --#{no_promote ? 'no-' : ''}promote"
77
- command << (no_stop_previous_version ? ' --no-stop-previous-version' : '')
77
+ command << ' --no-stop-previous-version' unless no_stop_previous_version.to_s.empty?
78
78
  unless context.shell(command)
79
79
  log 'Deployment failed.'
80
80
  context.shell('find $HOME/.config/gcloud/logs -type f -print -exec cat {} \;')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dpl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.26.travis.1777.3
4
+ version: 1.8.26.travis.1779.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Haase