opzworks 0.5.4 → 0.5.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/CHANGELOG.md +4 -0
- data/lib/opzworks/commands/berks.rb +11 -20
- data/lib/opzworks/meta.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: 3a3ec197d9a15caa3c422eca7fa09e28b357b326
|
|
4
|
+
data.tar.gz: e29fb5ca495ed84fb80c8ae8392727fcddf09e1d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 196ebdad3c774d22e1f17b05735ad0556c5c7da3089226a19725cd69813d7c351e1ec5da96550867de6f321de256cac1b4f4830d90b271280b2069dbcc2ff5b5
|
|
7
|
+
data.tar.gz: c4ee31fe4df370b05c1e571eb99a069ef72b2a9a3b0639b3c9f69f82f5addf6eab1ca888870b5b94fa181394550b04c04a978515cc1941992af4ae994878f813
|
data/CHANGELOG.md
CHANGED
|
@@ -68,26 +68,17 @@ module OpzWorks
|
|
|
68
68
|
s3_bucket = config.berks_s3_bucket || 'opzworks'
|
|
69
69
|
overrides = 'overrides'
|
|
70
70
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
#
|
|
80
|
-
#
|
|
81
|
-
|
|
82
|
-
run_local <<-BASH
|
|
83
|
-
cd #{@target_path}
|
|
84
|
-
berks update
|
|
85
|
-
BASH
|
|
86
|
-
run_local <<-BASH
|
|
87
|
-
cd #{@target_path}
|
|
88
|
-
berks vendor #{install_path}
|
|
89
|
-
BASH
|
|
90
|
-
end
|
|
71
|
+
# berks
|
|
72
|
+
#
|
|
73
|
+
puts 'Running berks install'.foreground(:blue)
|
|
74
|
+
run_local <<-BASH
|
|
75
|
+
cd #{@target_path}
|
|
76
|
+
berks update
|
|
77
|
+
BASH
|
|
78
|
+
run_local <<-BASH
|
|
79
|
+
cd #{@target_path}
|
|
80
|
+
berks vendor #{install_path}
|
|
81
|
+
BASH
|
|
91
82
|
|
|
92
83
|
# if there's an overrides file, just pull it and stuff the contents into the
|
|
93
84
|
# upload repo; the line is assumed to be a git repo. This is done to override
|
data/lib/opzworks/meta.rb
CHANGED