rumination 0.10.3 → 0.10.4
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 +4 -4
- data/lib/rumination/deploy/base.rb +1 -1
- data/lib/rumination/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3740ea5f5e373eea2fe58d1edb57a65b4a0761b
|
|
4
|
+
data.tar.gz: f1051831a6ba0f5710172ded373f1b962be276b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e5de2d58c5bc71c1710de634f3e15528c23ac0fdec98f27c1d145776bb0f333a86a5f28c1276c1e5c911b9cc43702d812b9b7d3f8e68bdb048787f2f9a02b182
|
|
7
|
+
data.tar.gz: fa0b357e79516f035bce2cd86dc5fea7de9bc9543d637b274fabd9c1f449812bbb99e6753748747fcb100cd40aad52b3994c1104b682bf37afaa53db7bb88204
|
|
@@ -28,7 +28,7 @@ module Rumination
|
|
|
28
28
|
setup_outside_env
|
|
29
29
|
DockerCompose.build.down("--remove-orphans").up
|
|
30
30
|
yield if block_given?
|
|
31
|
-
app_container.
|
|
31
|
+
app_container.run("rake deploy:unload[#{target}]")
|
|
32
32
|
raise DeployError unless $? == 0
|
|
33
33
|
app_container.run("rake deploy:finish[#{target}]")
|
|
34
34
|
raise DeployError unless $? == 0
|
data/lib/rumination/version.rb
CHANGED