dpl 1.8.2.travis.1075.4 → 1.8.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- OTczODdkMGE2ZDY1YzczODQzOGIwNzcxZjE2N2ZjODFjYzM0OTljYw==
5
- data.tar.gz: !binary |-
6
- NzhjMTA5OWJjMDBmNTU4OTZiMTUzNThmMTZmY2YwOTg4N2Y0MWRjNg==
2
+ SHA1:
3
+ metadata.gz: 8f34e716da63cf0110c42c16138ad97d1079cdee
4
+ data.tar.gz: c30d770f160dec486a5798a2192a9ec31898eda9
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- ZTM0NDQwNzc1ZTAzN2RkMWI4MmFjN2IxMjNkNDJkOGRmMWU1ZDNhZTA5ZGU0
10
- NmIwZmVkYjJiYjRiNzIwM2QyZjhjNTM4ZjRkMGNkYWQ4NzI1ZWQzYTViMDBm
11
- MGE2ZDcyYTljNGEzNzI0MGZiNGQxMTExMjg1Y2U4YjQ4MWE2ZGQ=
12
- data.tar.gz: !binary |-
13
- Y2IxNWJiOWUzNDRjM2RhNTJhMDdmYWVmY2U5ZWYwNTAyMTI3YTY3YTAyNTc5
14
- MzM3ZTFmNmEyZDAxMTI4MDg0ZjlhOTdlOTFhOTdiZjA1MWIxZGI3MTgzNDI0
15
- NGU1N2E0NDU1NTE5YTJhZTA5ZjM4ZDQyOGZiOTVhNjY5NGNiYmI=
6
+ metadata.gz: 048499c045d29e263a158b5ae064919443b91acf56fc50ea0ce35806705050e153c025188c702ad6215a0873db6301a943c1139dccca8b166f4e6eff26b077a5
7
+ data.tar.gz: 87588787425f63a0517ebe63e80afa467236c449296c4121052d47370eadb77e38a66a7f10394b4c85b2c3989f1563a863030a988612bf6ffd7f470e54676cb6
data/README.md CHANGED
@@ -438,7 +438,7 @@ You first need to create an [Atlas account](https://atlas.hashicorp.com/account/
438
438
  * **site**: Web App Name (if your app lives at myapp.azurewebsites.net, the name would be myapp).
439
439
  * **username**: Web App Deployment Username.
440
440
  * **password**: Web App Deployment Password.
441
- * **quiet**: If passed, Azure's deployment output will not be printed.
441
+ * **verbose**: If passed, Azure's deployment output will be printed. Warning: If you provide incorrect credentials, Git will print those in clear text. Correct authentication credentials will remain hidden.
442
442
 
443
443
  #### Environment variables:
444
444
 
@@ -448,7 +448,7 @@ You first need to create an [Atlas account](https://atlas.hashicorp.com/account/
448
448
 
449
449
  #### Examples:
450
450
 
451
- dpl --provider=AzureWebApps --username=depluser --password=deplp@ss --site=dplsite
451
+ dpl --provider=AzureWebApps --username=depluser --password=deplp@ss --site=dplsite --verbose
452
452
 
453
453
  ### Divshot.io:
454
454
 
@@ -29,10 +29,10 @@ module DPL
29
29
  def push_app
30
30
  log "Deploying to Azure Web App '#{config['site']}'"
31
31
 
32
- if !!options[:quiet]
33
- context.shell "git push --force --quiet #{git_target} master > /dev/null 2>&1"
34
- else
32
+ if !!options[:verbose]
35
33
  context.shell "git push --force --quiet #{git_target} master"
34
+ else
35
+ context.shell "git push --force --quiet #{git_target} master > /dev/null 2>&1"
36
36
  end
37
37
  end
38
38
  end
data/lib/dpl/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module DPL
2
- VERSION = '1.8.1'
2
+ VERSION = '1.8.2'
3
3
  end
metadata CHANGED
@@ -1,69 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dpl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.2.travis.1075.4
4
+ version: 1.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Haase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-04 00:00:00.000000000 Z
11
+ date: 2015-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: 3.0.0
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 3.0.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rspec-its
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ! '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ! '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ! '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ! '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: simplecov
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ! '>='
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ! '>='
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
@@ -84,14 +84,14 @@ dependencies:
84
84
  name: coveralls
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ! '>='
87
+ - - ">="
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ! '>='
94
+ - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  description: deploy tool abstraction for clients
@@ -101,10 +101,10 @@ executables:
101
101
  extensions: []
102
102
  extra_rdoc_files: []
103
103
  files:
104
- - .coveralls.yml
105
- - .gitignore
106
- - .rspec
107
- - .travis.yml
104
+ - ".coveralls.yml"
105
+ - ".gitignore"
106
+ - ".rspec"
107
+ - ".travis.yml"
108
108
  - Gemfile
109
109
  - LICENSE
110
110
  - README.md
@@ -215,18 +215,60 @@ require_paths:
215
215
  - lib
216
216
  required_ruby_version: !ruby/object:Gem::Requirement
217
217
  requirements:
218
- - - ! '>='
218
+ - - ">="
219
219
  - !ruby/object:Gem::Version
220
220
  version: 1.9.3
221
221
  required_rubygems_version: !ruby/object:Gem::Requirement
222
222
  requirements:
223
- - - ! '>'
223
+ - - ">="
224
224
  - !ruby/object:Gem::Version
225
- version: 1.3.1
225
+ version: '0'
226
226
  requirements: []
227
227
  rubyforge_project:
228
- rubygems_version: 2.4.5
228
+ rubygems_version: 2.4.3
229
229
  signing_key:
230
230
  specification_version: 4
231
231
  summary: deploy tool
232
- test_files: []
232
+ test_files:
233
+ - spec/cli_spec.rb
234
+ - spec/provider/anynines_spec.rb
235
+ - spec/provider/appfog_spec.rb
236
+ - spec/provider/atlas_spec.rb
237
+ - spec/provider/bintray_spec.rb
238
+ - spec/provider/bitballoon_spec.rb
239
+ - spec/provider/boxfuse_spec.rb
240
+ - spec/provider/chef_supermarket_spec.rb
241
+ - spec/provider/cloud66_spec.rb
242
+ - spec/provider/cloud_files_spec.rb
243
+ - spec/provider/cloudcontrol_spec.rb
244
+ - spec/provider/cloudfoundry_spec.rb
245
+ - spec/provider/code_deploy_spec.rb
246
+ - spec/provider/deis_spec.rb
247
+ - spec/provider/divshot_spec.rb
248
+ - spec/provider/dotcloud_spec.rb
249
+ - spec/provider/elastic_beanstalk_spec.rb
250
+ - spec/provider/exoscale_spec.rb
251
+ - spec/provider/gae_spec.rb
252
+ - spec/provider/gcs_spec.rb
253
+ - spec/provider/hackage_spec.rb
254
+ - spec/provider/heroku_anvil_spec.rb
255
+ - spec/provider/heroku_api_spec.rb
256
+ - spec/provider/heroku_git_deploy_key_spec.rb
257
+ - spec/provider/heroku_git_spec.rb
258
+ - spec/provider/lambda_spec.rb
259
+ - spec/provider/modulus_spec.rb
260
+ - spec/provider/npm_spec.rb
261
+ - spec/provider/openshift_spec.rb
262
+ - spec/provider/ops_works_spec.rb
263
+ - spec/provider/packagecloud_spec.rb
264
+ - spec/provider/puppet_forge_spec.rb
265
+ - spec/provider/pypi_spec.rb
266
+ - spec/provider/releases_spec.rb
267
+ - spec/provider/rubygems_spec.rb
268
+ - spec/provider/s3_spec.rb
269
+ - spec/provider/script_spec.rb
270
+ - spec/provider/testfairy_spec.rb
271
+ - spec/provider/transifex_spec.rb
272
+ - spec/provider_spec.rb
273
+ - spec/spec_helper.rb
274
+ has_rdoc: