cfndsl 0.17.3 → 0.17.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -2
- data/README.md +5 -1
- data/lib/cfndsl/external_parameters.rb +1 -1
- data/lib/cfndsl/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ad15fb621bc5dc0d47e908314fd505ce6427e1a828b4ae33df48fce403d1b54
|
4
|
+
data.tar.gz: cf5d5aa4b7ba30544a2d8994b63bcbf4366177e6ddccaac3d81bbbde9bf1e582
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1cd01493422b1537ca5742fa767fa61e2650bafb6bbd3fbc48112f76bd083f755a4f0975a4221ff58c8faf97a0483443f3a81ef965195140048a44fb5ebb6d32
|
7
|
+
data.tar.gz: c390e0db97a91789ccb0ac2aab17406ff79ca9ac40c53797d3152fd7bb7ed74dcb2e28488152925ba14bd22854e4cde483d1f9da515a9d9a84e451420d097d0d
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,19 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [0.17.
|
4
|
-
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.
|
3
|
+
## [0.17.4](https://github.com/cfndsl/cfndsl/tree/0.17.4) (2019-10-06)
|
4
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.3...0.17.4)
|
5
|
+
|
6
|
+
**Closed issues:**
|
7
|
+
|
8
|
+
- fails to generate with multiple input YAML files from 0.17.3 [\#422](https://github.com/cfndsl/cfndsl/issues/422)
|
9
|
+
|
10
|
+
**Merged pull requests:**
|
11
|
+
|
12
|
+
- improve test scenario for a basic merge in binding of multiple yaml files. Fixes \#422 [\#423](https://github.com/cfndsl/cfndsl/pull/423) ([gergnz](https://github.com/gergnz))
|
13
|
+
- Suggest to not use system wide Ruby [\#421](https://github.com/cfndsl/cfndsl/pull/421) ([elmobp](https://github.com/elmobp))
|
14
|
+
|
15
|
+
## [v0.17.3](https://github.com/cfndsl/cfndsl/tree/v0.17.3) (2019-09-13)
|
16
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.2...v0.17.3)
|
5
17
|
|
6
18
|
**Merged pull requests:**
|
7
19
|
|
data/README.md
CHANGED
@@ -24,7 +24,11 @@ templates by running ruby.
|
|
24
24
|
|
25
25
|
## Getting Started
|
26
26
|
|
27
|
-
ruby version > 2.3.0 is required to run cfndsl
|
27
|
+
ruby version > 2.3.0 is required to run cfndsl, you should look at using rbenv example for installing with rbenv
|
28
|
+
|
29
|
+
rbenv exec gem install cfndsl
|
30
|
+
|
31
|
+
Example for doing it system wide Ruby
|
28
32
|
|
29
33
|
sudo gem install cfndsl
|
30
34
|
|
@@ -51,7 +51,7 @@ module CfnDsl
|
|
51
51
|
# rubocop:disable Style/SafeNavigation
|
52
52
|
logstream.puts("Setting local variable #{key} to #{val}") if logstream
|
53
53
|
# rubocop:enable Style/SafeNavigation
|
54
|
-
if
|
54
|
+
if defined?(key) && val.is_a?(Hash)
|
55
55
|
bind.eval "#{key}.merge(#{val.inspect})"
|
56
56
|
else
|
57
57
|
bind.eval "#{key} = #{val.inspect}"
|
data/lib/cfndsl/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cfndsl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.17.
|
4
|
+
version: 0.17.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Jack
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2019-
|
14
|
+
date: 2019-10-06 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: bundler
|