rubycfn 0.3.0 → 0.3.1

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
  SHA1:
3
- metadata.gz: 7f56448eca7fe5adea74e68fd2b33d2e92919150
4
- data.tar.gz: bf9b226d2110b922e81adcb5acc7ef6d67a51182
3
+ metadata.gz: eab8c8a943fdf2029c93db966b95036ccdc61ef2
4
+ data.tar.gz: b4c956f4c40fbe78e08148f15444cf73cd9af4c4
5
5
  SHA512:
6
- metadata.gz: 0d01000310dc22988c4c9658c7900366d62d00f1f27d5181f1498ab8d59796160674b987eb32f922364a6cef4867ddbe554bbba4067df11cdc68f15ebc0befc0
7
- data.tar.gz: 71b2895125dc7fc470e6b9166fa4021b0a9a15331992c8bcfa8952337288859394343d885c831b27607f79a4891cc5e44f55482f6c48e013eb16c7ed44a70cf4
6
+ metadata.gz: 7d3538ea7256620bf8de8a850b98198290a473af222361684560f6192802c1a137a4938c6ec66e37b88cea4c5378aaf7d33121ce5d48db37649e011a3eeeedf9
7
+ data.tar.gz: ee06a42c32da3ec67cb2910381f7770ee2dee8ee78fc4bd33826e8379c009ccefe6e7bcca99532526e2c066422114256ac2e13fcb7501981fec8698b9c0b067b
data/CHANGELOG.md CHANGED
@@ -2,7 +2,10 @@
2
2
  All notable changes to Rubycfn will be documented in this file.
3
3
  This project uses [Semantic Versioning](http://semver.org/).
4
4
 
5
- ## 0.3.1 (Next Release)
5
+ ## 0.3.2 (Next Release)
6
+
7
+ ## 0.3.1
8
+ * Fixed bug in VPC template generation -- [@dennisvink][@dennisvink]
6
9
 
7
10
  ## 0.3.0
8
11
  * Removed non-AWS code. For non-AWS resources pin to 0.2.1 -- [@dennisvink][@dennisvink]
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubycfn (0.3.0)
4
+ rubycfn (0.3.1)
5
5
  activesupport (~> 5.1.5)
6
6
  dotenv (~> 2.4.0)
7
7
  json (~> 2.1.0)
data/README.md CHANGED
@@ -16,7 +16,7 @@ __________ ____ __________________.___._________ _____________________
16
16
  | _/ | /| | _// | |/ \ \/ | __) | | _/
17
17
  | | \ | / | | \\____ |\ \____| \ | | \
18
18
  |____|_ /______/ |______ // ______| \______ /\___ / |______ /
19
- \/ \/ \/ \/ \/ \/ [v0.2.1]
19
+ \/ \/ \/ \/ \/ \/ [v0.3.1]
20
20
  Project name? example
21
21
  Account ID? 1234567890
22
22
  Select region EU (Frankfurt)
data/lib/compound/vpc.rb CHANGED
@@ -50,7 +50,7 @@ module RubyCfn
50
50
  r.property(:route_table_id) { "#{prefix}_route_table#{suffix}".cfnize.ref }
51
51
  end
52
52
 
53
- resource "#{prefix}_route_table#{suffix}.cfnize",
53
+ resource "#{prefix}_route_table#{suffix}".cfnize,
54
54
  type: "AWS::EC2::RouteTable" do |r, index|
55
55
  r.property(:vpc_id) { "#{prefix}_vpc#{suffix}".cfnize.ref }
56
56
  end
@@ -1,4 +1,4 @@
1
1
  # Rubycfn version
2
2
  module Rubycfn
3
- VERSION = "0.3.0"
3
+ VERSION = "0.3.1"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubycfn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dennis Vink