build-cloud 0.0.23 → 0.0.24

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: cde9de9bd5f87d00b6f7a47a6f93f41e061960b9
4
- data.tar.gz: c866de81c63a9ec7b2ffd8cff55ad4aa38bbf009
3
+ metadata.gz: 563b1691ba6faca1b49a3419aeb1bc7041eb3d2b
4
+ data.tar.gz: a4566f9450bada05ce17219da77475b7b83a6398
5
5
  SHA512:
6
- metadata.gz: 73139746947c65f79ed3a167462b01b6a658015cb7b72cf789ee04bcaa26baff52168a1724dca330fd5a33175ec36af69c90254a7cf2cb49ba65f2c46cf74656
7
- data.tar.gz: c20bfb81dc65071c3752119390caf883b0d78c120dcd967b9bc61a0050bffc4afdf4384e8b2db8013235d25001d261f9c428fef6140e72f8a674922b46183670
6
+ metadata.gz: d0c4ec949b11b3c2b0b22c24c5eaf941f52110ca58595b52134d7805dfc4e4562c4c2ef2e902af5f9270fcaf9ce0a0c042dbfb115a7510966352c9862af49ddd
7
+ data.tar.gz: 2cf6c3770f8a52cecff4c3108e043af0df4794bc2d7a30a96e416774bf64d1ff936696067bfb0d54045bf40ce0291fc85b2e1fc9ea98dc4fdd9c980a58620ad0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Changelog
2
2
 
3
+ 2017-11-13 - version 0.0.24 - Fix a bug which prevented working with IAM roles in AWS accounts with more than 100 roles. Thank you @markchalloner!
4
+
3
5
  2017-03-01 - version 0.0.23 - Fix a bug where non-string values for interpolated variables caused a crash.
4
6
 
5
7
  2016-10-18 - version 0.0.22 - Fix launch configuration error where drives are different in config to fog.
data/build-cloud.gemspec CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "build-cloud"
7
- spec.version = "0.0.23"
7
+ spec.version = "0.0.24"
8
8
  spec.authors = ["The Scale Factory"]
9
9
  spec.email = ["info@scalefactory.com"]
10
10
  spec.summary = %q{Tools for building resources in AWS}
@@ -47,7 +47,7 @@ class BuildCloud::IAMRole
47
47
  end
48
48
 
49
49
  def read
50
- @iam.roles.select { |r| r.rolename == @options[:rolename] }.first
50
+ @iam.roles.get(@options[:rolename])
51
51
  end
52
52
 
53
53
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: build-cloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.23
4
+ version: 0.0.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Scale Factory
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-03 00:00:00.000000000 Z
11
+ date: 2017-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -146,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
146
146
  version: '0'
147
147
  requirements: []
148
148
  rubyforge_project:
149
- rubygems_version: 2.4.3
149
+ rubygems_version: 2.2.5
150
150
  signing_key:
151
151
  specification_version: 4
152
152
  summary: Tools for building resources in AWS