cfndsl 0.15.0 → 0.15.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c35481efeaa53234104932119ca1f2d30618dce3
4
- data.tar.gz: a80db4b44cce2a4e0fc4591fc1df3496b5adda2d
3
+ metadata.gz: c9ee8ed50669bd7ee84a31d41b3d58af290f7776
4
+ data.tar.gz: d8ddfc6a2e89a990995e71cea3ac2dc468120109
5
5
  SHA512:
6
- metadata.gz: 0bddda0ad62f9d9d1c89378c41add30867e0cf9ef37a4fe505f0b00cf76eac09231406c8f28f4e09b0ed7382376577f7209b1979927179b320411f11b52eba5d
7
- data.tar.gz: a46c41614907b56f121ea34f8eaa42216df064c349f85076352fd80d770e60d2da1ea4d34793fcd27d0adc1f9b57765be06efb929018eeb408ec7a3441f6c56a
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.0](https://github.com/stevenjack/cfndsl/tree/0.15.0) (2017-06-19)
4
- [Full Changelog](https://github.com/stevenjack/cfndsl/compare/v0.14.0...0.15.0)
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
@@ -24,6 +24,8 @@ templates by running ruby.
24
24
 
25
25
  ## Getting Started
26
26
 
27
+ ruby version > 2.1.0 is required to run cfndsl
28
+
27
29
  sudo gem install cfndsl
28
30
 
29
31
  Now write a template in the dsl
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 = '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']
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
 
@@ -1,3 +1,3 @@
1
1
  module CfnDsl
2
- VERSION = '0.15.0'.freeze
2
+ VERSION = '0.15.1'.freeze
3
3
  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.15.0
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-18 00:00:00.000000000 Z
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: '0'
141
+ version: '2.1'
142
142
  required_rubygems_version: !ruby/object:Gem::Requirement
143
143
  requirements:
144
144
  - - ">="