cfndsl 0.17.3 → 0.17.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ca0ed3764660d99aba5bab73da20c6e91d59e738bfb21e0bc8d8805eb8ecd63a
4
- data.tar.gz: 592e14b691e4eb8367599507dc19adb6aedccdda01c32c219f44c6c2c5f84e31
3
+ metadata.gz: 0ad15fb621bc5dc0d47e908314fd505ce6427e1a828b4ae33df48fce403d1b54
4
+ data.tar.gz: cf5d5aa4b7ba30544a2d8994b63bcbf4366177e6ddccaac3d81bbbde9bf1e582
5
5
  SHA512:
6
- metadata.gz: 26c92723daeded312aad01d28d6b31fe238586e468a13a583741d9619295881f1e1602d1d3e121c9e23e861ef2992cc3c280924ee2395c935df9b7e82bb41b2d
7
- data.tar.gz: 54b966108890545e7e7cda01871639c9d73ff3ffee8a4ef800c02ca2f94f096a71413b0892f55e2109508f2a72cca2eb951f07358b137b8065895a3da382c8cc
6
+ metadata.gz: 1cd01493422b1537ca5742fa767fa61e2650bafb6bbd3fbc48112f76bd083f755a4f0975a4221ff58c8faf97a0483443f3a81ef965195140048a44fb5ebb6d32
7
+ data.tar.gz: c390e0db97a91789ccb0ac2aab17406ff79ca9ac40c53797d3152fd7bb7ed74dcb2e28488152925ba14bd22854e4cde483d1f9da515a9d9a84e451420d097d0d
@@ -1,7 +1,19 @@
1
1
  # Change Log
2
2
 
3
- ## [0.17.3](https://github.com/cfndsl/cfndsl/tree/0.17.3) (2019-09-13)
4
- [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.2...0.17.3)
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 bind.eval "defined? #{key}"
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}"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CfnDsl
4
- VERSION = '0.17.3'
4
+ VERSION = '0.17.4'
5
5
  end
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.3
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-09-13 00:00:00.000000000 Z
14
+ date: 2019-10-06 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler