cfndsl 1.3.6 → 1.3.9

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: 1ceb84791ba82ab87bc436044190c38d88977e91ba3000a23eda817223a5a7a1
4
- data.tar.gz: f70d20c384bffe9739301c6b3b8ba40ebe3d605de99b8a46ebe715e178492b30
3
+ metadata.gz: ce4f12cd2532e9f0feda0ba90436fe76c1b92389fd0c72af072f5553465579c6
4
+ data.tar.gz: 9616a3c9d589fe3686a5fffed7b1555a0458727cffa7ae968f9127196aaf3cdb
5
5
  SHA512:
6
- metadata.gz: 19af4bc25b347cc61363cd6500ed59fb913182d5a4ce32c5c0754d5eca33bc78de168ebbb584d55e2f801a9a7076675b425b758c627bf4d2114646e5761b8ed8
7
- data.tar.gz: 989bad5d7dc8a08011290f066d3de6fc9b082b6b6ec92604407497eae26c7aaf84782dadc89211691b9e8a0fbb3aabe8d53030613e3cf2bce064288986e1647a
6
+ metadata.gz: 67b552107958343a8f8a816691c97533b9cb45ae4c12bacfce7c2f3d499cea04936e30dc7320c4008a61351c9f998350ad48526cdeddb81eb945e79f02d9dd32
7
+ data.tar.gz: 839d95ff35f1515fbd03761ba438a1e5c95597fe3c488d6b9afad6c5f128367edb3c3cfcdaa3af083db8d593fb0dec7a89c698f496bf7a76a0357c4fa88ef645
data/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.3.9](https://github.com/cfndsl/cfndsl/tree/1.3.9) (2022-07-26)
4
+
5
+ [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.8...1.3.9)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Fix output typos [\#481](https://github.com/cfndsl/cfndsl/pull/481) ([mitchclarkebase2](https://github.com/mitchclarkebase2))
10
+
11
+ ## [v1.3.8](https://github.com/cfndsl/cfndsl/tree/v1.3.8) (2022-06-30)
12
+
13
+ [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.7...v1.3.8)
14
+
15
+ **Merged pull requests:**
16
+
17
+ - Fix for cfndsl list command, undefined method 'Resources' [\#480](https://github.com/cfndsl/cfndsl/pull/480) ([avasisht](https://github.com/avasisht))
18
+
19
+ ## [v1.3.7](https://github.com/cfndsl/cfndsl/tree/v1.3.7) (2022-06-30)
20
+
21
+ [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.6...v1.3.7)
22
+
23
+ **Closed issues:**
24
+
25
+ - Missing AWS::ElasticLoadBalancingV2::LoadBalancer SubnetMapping [\#479](https://github.com/cfndsl/cfndsl/issues/479)
26
+
27
+ ## [v1.3.6](https://github.com/cfndsl/cfndsl/tree/v1.3.6) (2022-06-07)
28
+
29
+ [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.5...v1.3.6)
30
+
3
31
  ## [v1.3.5](https://github.com/cfndsl/cfndsl/tree/v1.3.5) (2022-06-07)
4
32
 
5
33
  [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.4...v1.3.5)
data/README.md CHANGED
@@ -1,9 +1,8 @@
1
1
  cfndsl
2
2
  ======
3
3
 
4
- [![Build Status](https://travis-ci.org/cfndsl/cfndsl.png?branch=master)](https://travis-ci.org/cfndsl/cfndsl)
4
+ [![Spec](https://github.com/cfndsl/cfndsl/actions/workflows/spec.yml/badge.svg)](https://github.com/cfndsl/cfndsl/actions/workflows/spec.yml)
5
5
  [![Gem Version](https://badge.fury.io/rb/cfndsl.png)](http://badge.fury.io/rb/cfndsl)
6
- [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/cfndsl/cfndsl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Join the chat at https://gitter.im/cfndsl/cfndsl](https://badges.gitter.im/cfndsl/cfndsl.svg)](https://gitter.im/cfndsl/cfndsl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
7
6
 
8
7
  [AWS Cloudformation](http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide/GettingStarted.html) templates are an incredibly powerful way to build
9
8
  sets of resources in Amazon's AWS environment.
@@ -444,7 +443,7 @@ Usage: cfndsl [options] FILE
444
443
  -p, --pretty Pretty-format output JSON
445
444
  -f, --format FORMAT Specify the output format (JSON default)
446
445
  -D, --define "VARIABLE=VALUE" Directly set local VARIABLE as VALUE
447
- -v, --verbose Turn on verbose ouptut
446
+ -v, --verbose Turn on verbose output
448
447
  -m, --disable-deep-merge Disable deep merging of yaml
449
448
  -s, --specification-file FILE Location of Cloudformation Resource Specification file
450
449
  -u [VERSION], Update the Resource Specification file to latest, or specific version
data/lib/cfndsl/runner.rb CHANGED
@@ -46,7 +46,7 @@ module CfnDsl
46
46
  end
47
47
 
48
48
  options[:verbose] = false
49
- opts.on('-v', '--verbose', 'Turn on verbose ouptut') do
49
+ opts.on('-v', '--verbose', 'Turn on verbose output') do
50
50
  options[:verbose] = true
51
51
  end
52
52
 
@@ -76,7 +76,7 @@ module CfnDsl
76
76
 
77
77
  opts.on('-l', '--list', 'List supported resources') do
78
78
  require_relative 'cfnlego'
79
- puts Cfnlego.Resources.sort
79
+ puts Cfnlego.resources.sort
80
80
  exit
81
81
  end
82
82
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CfnDsl
4
- VERSION = '1.3.6'
4
+ VERSION = '1.3.9'
5
5
  end
data/spec/cli_spec.rb CHANGED
@@ -12,7 +12,7 @@ describe 'cfndsl', type: :aruba do
12
12
  -p, --pretty Pretty-format output JSON
13
13
  -f, --format FORMAT Specify the output format (JSON default)
14
14
  -D, --define "VARIABLE=VALUE" Directly set local VARIABLE as VALUE
15
- -v, --verbose Turn on verbose ouptut
15
+ -v, --verbose Turn on verbose output
16
16
  -m, --disable-deep-merge Disable deep merging of yaml
17
17
  -s, --specification-file FILE Location of Cloudformation Resource Specification file
18
18
  -u [VERSION], Update the Resource Specification file to latest, or specific version
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: 1.3.6
4
+ version: 1.3.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Jack
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2022-06-07 00:00:00.000000000 Z
14
+ date: 2022-07-26 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler