lono 5.2.2 → 5.2.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 +3 -0
- data/lib/lono/template/dsl/builder/output.rb +1 -1
- data/lib/lono/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60df75da76c7f9091e6ac72962141dbf875a356f26d3683a2b3290041c0b939c
|
4
|
+
data.tar.gz: 0c040f2cd6b73270c39bce1de66f595cad1578865d5f9f6424ffcf3a2c552326
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22a624bffbe0a18377527f9040e0a294cb50a805d9054fa420e51fbfa14f8e64d726d2265986e696e68bbc17e9b4514277d063b22ea4389f8c36bdc01d77e5d3
|
7
|
+
data.tar.gz: ec82e4f4cfdc47b6902f7e85493c6933c40717662a6232e49f8f65098150ebe7f27524a5dde805c4c8e2fc8216a92177c15d7a179d340d099e89569804b57138
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
5
5
|
|
6
|
+
## [5.2.3]
|
7
|
+
- output dsl: 2nd form allow nil value in case of variables
|
8
|
+
|
6
9
|
## [5.2.2]
|
7
10
|
- seed only support params for main conventional template in blueprint
|
8
11
|
- set --iam with --sure option also
|
@@ -21,7 +21,7 @@ class Lono::Template::Dsl::Builder
|
|
21
21
|
properties = {value: second}
|
22
22
|
end
|
23
23
|
{ logical_id => properties }
|
24
|
-
elsif definition.size == 2 && second.is_a?(String) # short form
|
24
|
+
elsif definition.size == 2 && (second.is_a?(String) || second.nil?) # short form
|
25
25
|
logical_id = first
|
26
26
|
properties = second.is_a?(String) ? { value: second } : {}
|
27
27
|
{ logical_id => properties }
|
data/lib/lono/version.rb
CHANGED