rumination 0.11.4 → 0.11.5
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 -0
- data/lib/rumination/tasks/deploy/inside.rake +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: d5a017151fbe1f808354b7c926ba9ab6b1b2e5e7
|
|
4
|
+
data.tar.gz: 733f72c88adc92b382b19b2cb07b6df49a80c8b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 42453f3eea7838e24553af0415086ac13925c341e9c64bb3839630d9eaee15dad976b707bc81f507770928f1c9354d3d0b44db481518e8dc400dd897a6669b62
|
|
7
|
+
data.tar.gz: 9426aaa257878f86feec7cf70b243991b64b3f27b98295d2da4a4bb0ffca231f01b8d0fbde58b2a36f74bc902b86bf87fe71416871b45a17bc40623cb78bf49a
|
|
@@ -30,6 +30,7 @@ module Rumination
|
|
|
30
30
|
def bootstrap
|
|
31
31
|
raise BootstrappedAlready if bootstrapped?
|
|
32
32
|
copy_dump_if_requested
|
|
33
|
+
app_container.run("rake deploy:inside:write_env_file[#{target}]")
|
|
33
34
|
app_container.run("rake deploy:inside:bootstrap[#{target}]")
|
|
34
35
|
raise BootstrapError unless $? == 0
|
|
35
36
|
end
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
namespace :deploy do
|
|
2
2
|
namespace :inside do
|
|
3
3
|
# these are invoked inside the containers
|
|
4
|
-
task :bootstrap, [:target] => %w[
|
|
4
|
+
task :bootstrap, [:target] => %w[db:setup:maybe_load_dump]
|
|
5
5
|
|
|
6
6
|
namespace :bootstrap do
|
|
7
7
|
task :undo, [:target] => %w[db:drop remove_env_file]
|
data/lib/rumination/version.rb
CHANGED