opzworks 0.6.2 → 0.6.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/opzworks/commands/berks.rb +12 -1
- data/lib/opzworks/meta.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13a23231c360f3084886f8aec9634bde9b45a8fe
|
4
|
+
data.tar.gz: bd74a23339baa6b30ceb32b156c3fdcf035550f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0eda426fad4c204ef192b495ebe41996da4e7679f03fed51a97918c02dcde80648dbd5a5fb3cf8c46f66833ad175682c6f9804701a964038b66a0f43b82c0af8
|
7
|
+
data.tar.gz: 4cb7e6f766c2ad7815569404cb6002a1af358625b72e6c037750cf46fbb7a2ee3ae63137300067bcbede7a62d8919f6cd9a6cc8db142ee4f39a0452ef67d4455
|
data/CHANGELOG.md
CHANGED
@@ -72,11 +72,22 @@ module OpzWorks
|
|
72
72
|
|
73
73
|
# berks
|
74
74
|
#
|
75
|
-
|
75
|
+
if !File.exist?("#{@target_path}/Berksfile.lock")
|
76
|
+
puts "\nNo Berksfile.lock, running berks install before vendoring".foreground(:blue)
|
77
|
+
run_local <<-BASH
|
78
|
+
cd #{@target_path}
|
79
|
+
berks install
|
80
|
+
git add Berksfile.lock
|
81
|
+
BASH
|
82
|
+
end
|
83
|
+
|
84
|
+
puts "\nUpdating the berkshelf".foreground(:blue)
|
76
85
|
run_local <<-BASH
|
77
86
|
cd #{@target_path}
|
78
87
|
berks update
|
79
88
|
BASH
|
89
|
+
|
90
|
+
puts "\nVendoring the berkshelf".foreground(:blue)
|
80
91
|
run_local <<-BASH
|
81
92
|
cd #{@target_path}
|
82
93
|
berks vendor #{install_path}
|
data/lib/opzworks/meta.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opzworks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Grant Heffernan
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-01-
|
12
|
+
date: 2016-01-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: aws-sdk
|