canzea 0.1.166 → 0.1.167
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/canzea/version.rb +1 -1
- data/lib/canzea.rb +2 -2
- 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: cc04e83fa7fed7f2c8aa1bdcd27cea7402ecf5d5
|
4
|
+
data.tar.gz: 60862ce32ce73ab9a8dacdab3e8591e4eb5b275d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 824d59fe679124f9cfb4f2757ed3920ad9b1625fd045f3a19b71a176b517ad6d1247f731f8ca681738726963a245a73d01f07d9f7ad622bf73c2d60ddca7e916
|
7
|
+
data.tar.gz: 8ed80993f560b5fbd90e29d080bacfd54a6faab3dccbfc8b18836f6ba96f1dc257edd1e1c8929b717362fc3a1d5be63186b79c5d79d01a8684b2db85ec8fba23
|
data/lib/canzea/version.rb
CHANGED
data/lib/canzea.rb
CHANGED
@@ -248,7 +248,7 @@ module Canzea
|
|
248
248
|
puts "-- Running install step #{opts[:role]} #{opts[:solution]}"
|
249
249
|
|
250
250
|
# If there are args, then parse them and put them in environment variables
|
251
|
-
args = JSON.parse(opts.fetch(:args, {}))
|
251
|
+
args = JSON.parse(opts.fetch(:args, '{}'))
|
252
252
|
args.keys.each { | k |
|
253
253
|
if args[k].instance_of? String
|
254
254
|
puts "-- SETTING #{k.upcase} = #{args[k].to_str}"
|
@@ -273,7 +273,7 @@ module Canzea
|
|
273
273
|
puts "-- Running configure step #{opts[:role]} #{opts[:solution]}"
|
274
274
|
|
275
275
|
# If there are args, then parse them and put them in environment variables
|
276
|
-
args = JSON.parse(opts.fetch(:args, {}))
|
276
|
+
args = JSON.parse(opts.fetch(:args, '{}'))
|
277
277
|
args.keys.each { | k |
|
278
278
|
if args[k].instance_of? String
|
279
279
|
puts "-- SETTING #{k.upcase} = #{args[k].to_str}"
|