dpl 1.5.9.travis.372.1 → 1.5.9.travis.373.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 +8 -8
- data/lib/dpl/provider/cloudcontrol.rb +1 -1
- data/spec/provider/cloudcontrol_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NDQ3OGI3ODFmYjkxMmI2NzlkNzdhNmZmNTRhM2Y4Nzg0ZGQ5ZjE5MA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NjAwMjBjNThkMWM3MzNiNDA2MmFkNzgxOTY1OGNiMTg3YTE0YzBiMQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YjQzNmRiN2RkNTU0ZGI5MzFiOTg3NDEzNDU0NjNlYzgzNzFkNGJlMzY0M2Rj
|
10
|
+
OTA2MzkyN2IwMTY2NGUxOTRkYjQ1ZTBmNTQ0NTk3OGY1MGE5ZjFhNmQ4NzEx
|
11
|
+
YTBlZGNkNTI0MWEyZWVmMDA5OTIwMDcwMTY1ZDk2NDk2ODM5ZGM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YjdlNGU1NmQ5NzVhZDMyMzY3MTVjYTQ5NTMxMjY0YmE3YjZiODhlMmYwNjc3
|
14
|
+
ZTYzMmI5NDEyZGI4NzQxYWVmNGUwZDQ0NTgxOWVkZDEzOWM5NTJiYTkyZjNm
|
15
|
+
Zjk5OGY5YjA4OTAxYTVmZWYyOWFkZDk0YTYyZWJiOTM1ZGVlOTE=
|
@@ -85,7 +85,7 @@ describe DPL::Provider::CloudControl do
|
|
85
85
|
it '#push_app shuld deploy the app' do
|
86
86
|
provider.instance_variable_set(:@repository, 'foo_repo.git')
|
87
87
|
context = double(:shell)
|
88
|
-
context.should receive(:shell).with("git push foo_repo.git master;")
|
88
|
+
context.should receive(:shell).with("git push foo_repo.git HEAD:master;")
|
89
89
|
provider.should receive(:context).and_return context
|
90
90
|
provider.should receive(:deploy_app)
|
91
91
|
|