cfndsl 1.3.5 → 1.3.8

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: 7799eef3550b148fd5961d700f7c5beea5e04632f474ba83c5a3675d193e8866
4
- data.tar.gz: 426ed1189abdc6b65c565d9dafcd406d1c58931ac052dd0488132a22e84a7481
3
+ metadata.gz: 44c4465eaa56cb135814ebea11dde4513e631819643e3489bfa0f7bee45964ad
4
+ data.tar.gz: '049fe199e55a9a4ad06b4665bf7971f7b9d225b7a206a248528b8311a6bf13d7'
5
5
  SHA512:
6
- metadata.gz: 6e2d29590aa9696c5e0f80da32ed0d6669186e92036976addecae4c38648235b5b5d3df3f4cdaa91351d4a7bdb578bac127b7ed1932355246b17c82f3f30a0b2
7
- data.tar.gz: 64a53ddd2ddc727685648b2e7f123c13270882999e504814d78ad3f2fc825f4291af6d8d35d5f33af48ffe8c8367e7c69c3a935dc4ab1583356631dc0e1532fa
6
+ metadata.gz: be48a8493f361793180c7b98ad76e57bce566aa70823380ca65408850fb09cfa0240a6767aee3c6f614ada5fe7e0d1a0dfbe8cfb8662c06d9d202a78b7245131
7
+ data.tar.gz: 80d31ed676b94bf904ecdd9d494e50350e89cb51f12a337b033e98862c87405f44b506796174520134b840579a56d9d339af8664fb4f2b804443883af181f589
@@ -1,11 +1,9 @@
1
- name: Spec and publish
1
+ name: Spec
2
2
 
3
3
  on:
4
4
  push:
5
5
  branches:
6
6
  - "**"
7
- tags:
8
- - 'v*'
9
7
  jobs:
10
8
  test:
11
9
 
@@ -28,11 +26,3 @@ jobs:
28
26
  run: bundle install
29
27
  - name: Run tests
30
28
  run: bundle exec rake
31
-
32
- - name: Publish Gem
33
- if: contains(github.ref, 'refs/tags/v')
34
- uses: cadwallion/publish-rubygems-action@master
35
- env:
36
- GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
37
- RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
38
- RELEASE_COMMAND: bundle exec rake release
@@ -0,0 +1,36 @@
1
+ name: Spec and publish
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
+ jobs:
8
+ test:
9
+
10
+ runs-on: ubuntu-latest
11
+
12
+ strategy:
13
+ matrix:
14
+ ruby-version: ['3.0']
15
+
16
+ steps:
17
+ - uses: actions/checkout@v3
18
+ - name: Set up Ruby ${{ matrix.ruby-version }}
19
+ uses: ruby/setup-ruby@v1
20
+ with:
21
+ ruby-version: ${{ matrix.ruby-version }}
22
+ bundler-cache: true
23
+ - name: Update system gems
24
+ run: gem update --system
25
+ - name: Install dependencies
26
+ run: bundle install
27
+ - name: Run tests
28
+ run: bundle exec rake
29
+
30
+ - name: Publish Gem
31
+ if: contains(github.ref, 'refs/tags/v')
32
+ uses: cadwallion/publish-rubygems-action@master
33
+ env:
34
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
35
+ RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
36
+ RELEASE_COMMAND: bundle exec rake release
data/CHANGELOG.md CHANGED
@@ -1,8 +1,28 @@
1
1
  # Changelog
2
2
 
3
- ## [1.3.5](https://github.com/cfndsl/cfndsl/tree/1.3.5) (2022-06-07)
3
+ ## [1.3.8](https://github.com/cfndsl/cfndsl/tree/1.3.8) (2022-06-30)
4
4
 
5
- [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.4...1.3.5)
5
+ [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.7...1.3.8)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Fix for cfndsl list command, undefined method 'Resources' [\#480](https://github.com/cfndsl/cfndsl/pull/480) ([avasisht](https://github.com/avasisht))
10
+
11
+ ## [v1.3.7](https://github.com/cfndsl/cfndsl/tree/v1.3.7) (2022-06-30)
12
+
13
+ [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.6...v1.3.7)
14
+
15
+ **Closed issues:**
16
+
17
+ - Missing AWS::ElasticLoadBalancingV2::LoadBalancer SubnetMapping [\#479](https://github.com/cfndsl/cfndsl/issues/479)
18
+
19
+ ## [v1.3.6](https://github.com/cfndsl/cfndsl/tree/v1.3.6) (2022-06-07)
20
+
21
+ [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.5...v1.3.6)
22
+
23
+ ## [v1.3.5](https://github.com/cfndsl/cfndsl/tree/v1.3.5) (2022-06-07)
24
+
25
+ [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.4...v1.3.5)
6
26
 
7
27
  **Closed issues:**
8
28
 
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.
data/lib/cfndsl/runner.rb CHANGED
@@ -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.5'
4
+ VERSION = '1.3.8'
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: 1.3.5
4
+ version: 1.3.8
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-06-30 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler
@@ -53,6 +53,7 @@ extensions: []
53
53
  extra_rdoc_files: []
54
54
  files:
55
55
  - ".github/workflows/spec.yml"
56
+ - ".github/workflows/spec_publish.yml"
56
57
  - ".gitignore"
57
58
  - ".rubocop.yml"
58
59
  - CHANGELOG.md