cfndsl 0.15.0 → 0.15.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 +4 -4
- data/CHANGELOG.md +10 -2
- data/README.md +2 -0
- data/cfndsl.gemspec +12 -11
- data/lib/cfndsl/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c9ee8ed50669bd7ee84a31d41b3d58af290f7776
|
|
4
|
+
data.tar.gz: d8ddfc6a2e89a990995e71cea3ac2dc468120109
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 00011d3bc59e5320d82c5f4576a8fa652c7f7695c8b882b10f9f70dc5fc1d88d68cae938938efdc37e915a01b36257050b91dcb922e0b02de543eac25f5c8eb6
|
|
7
|
+
data.tar.gz: 92ddd3f9fb8b31474da1e433e3ded46015b0c796392668c2fcf7ede45f49898d875996bcc8b11520a37e01b5aab7657581b441f736ccb1b9cc388bb5393a817e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [0.15.
|
|
4
|
-
[Full Changelog](https://github.com/stevenjack/cfndsl/compare/v0.
|
|
3
|
+
## [0.15.1](https://github.com/stevenjack/cfndsl/tree/0.15.1) (2017-06-20)
|
|
4
|
+
[Full Changelog](https://github.com/stevenjack/cfndsl/compare/v0.15.0...0.15.1)
|
|
5
|
+
|
|
6
|
+
**Fixed bugs:**
|
|
7
|
+
|
|
8
|
+
- Ruby 2.1.0 is minimum required version, but we don't discuss this anywhere [\#331](https://github.com/stevenjack/cfndsl/issues/331)
|
|
9
|
+
- specify ruby v 2.1 as minimum [\#332](https://github.com/stevenjack/cfndsl/pull/332) ([gergnz](https://github.com/gergnz))
|
|
10
|
+
|
|
11
|
+
## [v0.15.0](https://github.com/stevenjack/cfndsl/tree/v0.15.0) (2017-06-18)
|
|
12
|
+
[Full Changelog](https://github.com/stevenjack/cfndsl/compare/v0.14.0...v0.15.0)
|
|
5
13
|
|
|
6
14
|
**Closed issues:**
|
|
7
15
|
|
data/README.md
CHANGED
data/cfndsl.gemspec
CHANGED
|
@@ -5,17 +5,18 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
5
5
|
require 'cfndsl/version'
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
|
-
s.name
|
|
9
|
-
s.version
|
|
10
|
-
s.summary
|
|
11
|
-
s.description
|
|
12
|
-
s.authors
|
|
13
|
-
s.email
|
|
14
|
-
s.files
|
|
15
|
-
s.homepage
|
|
16
|
-
s.license
|
|
17
|
-
s.test_files
|
|
18
|
-
s.require_paths
|
|
8
|
+
s.name = 'cfndsl'
|
|
9
|
+
s.version = CfnDsl::VERSION
|
|
10
|
+
s.summary = 'AWS Cloudformation DSL'
|
|
11
|
+
s.description = 'DSL for creating AWS Cloudformation templates'
|
|
12
|
+
s.authors = ['Steven Jack', 'Chris Howe']
|
|
13
|
+
s.email = ['stevenmajack@gmail.com', 'chris@howeville.com']
|
|
14
|
+
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
|
15
|
+
s.homepage = 'https://github.com/stevenjack/cfndsl'
|
|
16
|
+
s.license = 'MIT'
|
|
17
|
+
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
|
18
|
+
s.require_paths = ['lib']
|
|
19
|
+
s.required_ruby_version = '~> 2.1'
|
|
19
20
|
|
|
20
21
|
s.executables << 'cfndsl'
|
|
21
22
|
|
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.15.
|
|
4
|
+
version: 0.15.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steven Jack
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2017-06-
|
|
12
|
+
date: 2017-06-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -136,9 +136,9 @@ require_paths:
|
|
|
136
136
|
- lib
|
|
137
137
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
138
138
|
requirements:
|
|
139
|
-
- - "
|
|
139
|
+
- - "~>"
|
|
140
140
|
- !ruby/object:Gem::Version
|
|
141
|
-
version: '
|
|
141
|
+
version: '2.1'
|
|
142
142
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
143
|
requirements:
|
|
144
144
|
- - ">="
|