builderator 0.3.12 → 0.3.13
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/VERSION +1 -1
- data/lib/builderator/tasks/berks.rb +1 -1
- data/lib/builderator/util/cookbook.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: b2eadca1dd3b380c83bb35ef01faa157f054e6d9
|
|
4
|
+
data.tar.gz: f37ba30ec87657a755f2e2984d7278c0f9732c76
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 323648d060a9fcddcc2b266c48d4eb11cd914618cd67ed81c59438efae53651101e24559c1f94e1b5d607bfca27577308b4c118f05617522027433e7f9a46d2a
|
|
7
|
+
data.tar.gz: 2824afcf74339053bf0e26ca17f4ff2e723830410e6a8f78280979237369f0f332613c8e60cd0077776a4b27a723b79718007ec09502a81ee71416af3526a8e0
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.13
|
|
@@ -60,7 +60,7 @@ module Builderator
|
|
|
60
60
|
end
|
|
61
61
|
|
|
62
62
|
desc "clean [PATH = #{ Util::Cookbook::DEFAULT_VENDOR }]", 'Remove a local vendor directory'
|
|
63
|
-
def clean(path = Util::Cookbook::DEFAULT_VENDOR)
|
|
63
|
+
def clean(path = Util::Cookbook::DEFAULT_VENDOR.to_s)
|
|
64
64
|
remove_dir path
|
|
65
65
|
end
|
|
66
66
|
end
|
|
@@ -74,7 +74,7 @@ module Builderator
|
|
|
74
74
|
c.from_file(path.join('metadata.rb').to_s)
|
|
75
75
|
|
|
76
76
|
elsif path.join('metadata.json').exist?
|
|
77
|
-
c.from_json(path.join('metadata.json').
|
|
77
|
+
c.from_json(path.join('metadata.json').read)
|
|
78
78
|
|
|
79
79
|
else
|
|
80
80
|
fail IOError, 'Unable to read metadata.rb or metadata.json!'
|