kumogata 0.5.7 → 0.5.8

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: 12c341fa6389b5e19fc4d5976d1935b6caefa11b
4
- data.tar.gz: 9613bbe522dac0fe1050ceaf5a9d246300e05db5
3
+ metadata.gz: 7069d696497deb05f60ddaaec7404fc9d616af53
4
+ data.tar.gz: 17f996879118f731ad8b069e555f5b822f759ccf
5
5
  SHA512:
6
- metadata.gz: d66fe32a195bee0d258eeecb3f284567a6c374e81fcec2393fcf0ce175538311d4f9bc3603e181fc70fe0af85e0fa331bbd6d44b466b5da95879970b6afb6dcb
7
- data.tar.gz: 7e54530d0fb5255717ca41c19c57c08d564f399900ce86607a9c985b06f1ce65cd507050de387fbb800bfb66c4ed3fc44fa1f819651256984d1af8672ee701e9
6
+ metadata.gz: 4eada7343ae88e75459e986262c60c133d1633b0f4f9b92009e5a650999e4c859a0e765ff72ebdefa08906a218a36dfdf4c7e3e8027f04e4edfd4bc6864753d3
7
+ data.tar.gz: 39e9c4647e68ed8e7f93b1b3133ec70e0c4634f08d43ab61170fc0a45ce865333118d9ab1b5581ef211cd041e87ce4567c8ec3e3f6ba8f6a591b4da281384b97
@@ -1,6 +1,10 @@
1
+ sudo: false
1
2
  language: ruby
3
+ cache: bundler
2
4
  rvm:
3
5
  - 2.0.0
6
+ - 2.1
7
+ - 2.2
4
8
  script:
5
9
  - bundle install
6
10
  - bundle exec rake
data/README.md CHANGED
@@ -298,7 +298,7 @@ You can use the Iteration in the template using `_(...)` method.
298
298
 
299
299
  ```ruby
300
300
  Resources do
301
- ['instance1', 'instance2', 'instance3'].echo {|instance_name|
301
+ ['instance1', 'instance2', 'instance3'].each {|instance_name|
302
302
  _(instance_name) do
303
303
  Type "AWS::EC2::Instance"
304
304
  Properties do
@@ -35,7 +35,7 @@ begin
35
35
  ini = AWS::Core::IniParser.parse(File.read(options.config_path))
36
36
  profile = options.config_profile || 'default'
37
37
  profile = "profile #{profile}" unless profile == 'default'
38
- region = ini[profile]['region']
38
+ region = (ini[profile] || {})['region']
39
39
  aws_opts[:region] = region if region
40
40
  end
41
41
 
@@ -1,3 +1,3 @@
1
1
  module Kumogata
2
- VERSION = '0.5.7'
2
+ VERSION = '0.5.8'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kumogata
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.7
4
+ version: 0.5.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Genki Sugawara
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-19 00:00:00.000000000 Z
11
+ date: 2015-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-v1
@@ -335,7 +335,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
335
335
  version: '0'
336
336
  requirements: []
337
337
  rubyforge_project:
338
- rubygems_version: 2.0.14
338
+ rubygems_version: 2.0.14.1
339
339
  signing_key:
340
340
  specification_version: 4
341
341
  summary: A tool for AWS CloudFormation.