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 +4 -4
- data/.travis.yml +4 -0
- data/README.md +1 -1
- data/bin/kumogata +1 -1
- data/lib/kumogata/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7069d696497deb05f60ddaaec7404fc9d616af53
|
4
|
+
data.tar.gz: 17f996879118f731ad8b069e555f5b822f759ccf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4eada7343ae88e75459e986262c60c133d1633b0f4f9b92009e5a650999e4c859a0e765ff72ebdefa08906a218a36dfdf4c7e3e8027f04e4edfd4bc6864753d3
|
7
|
+
data.tar.gz: 39e9c4647e68ed8e7f93b1b3133ec70e0c4634f08d43ab61170fc0a45ce865333118d9ab1b5581ef211cd041e87ce4567c8ec3e3f6ba8f6a591b4da281384b97
|
data/.travis.yml
CHANGED
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'].
|
301
|
+
['instance1', 'instance2', 'instance3'].each {|instance_name|
|
302
302
|
_(instance_name) do
|
303
303
|
Type "AWS::EC2::Instance"
|
304
304
|
Properties do
|
data/bin/kumogata
CHANGED
@@ -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
|
|
data/lib/kumogata/version.rb
CHANGED
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.
|
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-
|
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.
|