dpl 1.7.2.travis.584.1 → 1.7.2.travis.586.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/ninefold.rb +1 -1
- data/spec/provider/ninefold_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
|
+
NGE0Yzg2NDU4NmY2ZWQxYmJiZDM3NjdmZTBmOGIxNTM3NTE4YTk1NQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MWZmNzRhZWRhMjA3YzBkYjNjNmI3MWQwODcyNzQxZjdmMGQ1MmQyZg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YzZiMTUyZjE0OGQxOTk3MGMxYmFhNjIwYjZmMGY5MjFlZjJhM2NmN2IzZjM5
|
|
10
|
+
ZWVlNWRiZTIzNDM0NTE2YmIxYjVkY2E0ZTc2ZDdmOTdmNzZmNjg3NDRiY2Ni
|
|
11
|
+
MTBmNzc2NmNiNWZiZjE3NWEyN2E5YjY4OTAxNzRmOTM4ZGE5MmE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NDNhMjI5MTg5ZTMxMmVlNGI1YjljMWI4NzZhNGYxM2UxMTI0NTU2MjM4YzM3
|
|
14
|
+
YTdjYWZjNDY2MTdjZGZjMjkxNmZjZThhYWQxZDA3MjkzYzEyZjhkNjBlMGU0
|
|
15
|
+
N2I3YjU2MWY5NGY0MTQ3MWRmODU4MDkyOGM3Mzk4Y2NmMDMwMWI=
|
|
@@ -16,7 +16,7 @@ module DPL
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
def push_app
|
|
19
|
-
context.shell "AUTH_TOKEN=#{option(:auth_token)} APP_ID=#{option(:app_id)} ninefold app redeploy --sure"
|
|
19
|
+
context.shell "AUTH_TOKEN=#{option(:auth_token)} APP_ID=#{option(:app_id)} ninefold app redeploy --robot --sure"
|
|
20
20
|
end
|
|
21
21
|
end
|
|
22
22
|
end
|
|
@@ -28,7 +28,7 @@ describe DPL::Provider::Ninefold do
|
|
|
28
28
|
|
|
29
29
|
describe "#push_app" do
|
|
30
30
|
it 'includes the auth token and app ID specified' do
|
|
31
|
-
expect(provider.context).to receive(:shell).with("AUTH_TOKEN=123456789 APP_ID=1234 ninefold app redeploy --sure")
|
|
31
|
+
expect(provider.context).to receive(:shell).with("AUTH_TOKEN=123456789 APP_ID=1234 ninefold app redeploy --robot --sure")
|
|
32
32
|
provider.push_app
|
|
33
33
|
end
|
|
34
34
|
end
|