kitchen-ec2 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -2
- data/Gemfile +1 -0
- data/kitchen-ec2.gemspec +1 -1
- data/lib/kitchen/driver/ec2.rb +7 -0
- data/lib/kitchen/driver/ec2_version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad438e44f62d08b86a13486067fcca4d3169da54
|
4
|
+
data.tar.gz: 53bb61551639822d1b2325e62ebd9c6b4f3e67fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d84b7243fb9222bb262b9f033b2da352f60991983f12aa034ba76251d25b323636e7c97a9151e0d050c575608c110b2c8494b8610a99db73211bbf7c1bf799ea
|
7
|
+
data.tar.gz: e21e8a2d5247659ce395e466c939d97cc4b0f30aec91119ec4c480df058e5227b5dcd66c06d02e9b3f29cefc99f1acddc4a6c225bab2364cf7e4fb938086c6f6
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [1.0.
|
4
|
-
[Full Changelog](https://github.com/test-kitchen/kitchen-ec2/compare/v1.0.0
|
3
|
+
## [1.0.1](https://github.com/test-kitchen/kitchen-ec2/tree/1.0.1) (2016-07-20)
|
4
|
+
[Full Changelog](https://github.com/test-kitchen/kitchen-ec2/compare/v1.0.0...1.0.1)
|
5
|
+
|
6
|
+
**Fixed bugs:**
|
7
|
+
|
8
|
+
- Default AMIs for Windows not available [\#174](https://github.com/test-kitchen/kitchen-ec2/issues/174)
|
9
|
+
- Fix autoload race in Aws::EC2::\* [\#264](https://github.com/test-kitchen/kitchen-ec2/pull/264) ([jkeiser](https://github.com/jkeiser))
|
10
|
+
|
11
|
+
## [v1.0.0](https://github.com/test-kitchen/kitchen-ec2/tree/v1.0.0) (2016-03-03)
|
12
|
+
[Full Changelog](https://github.com/test-kitchen/kitchen-ec2/compare/v1.0.0.beta.1...v1.0.0)
|
5
13
|
|
6
14
|
**Merged pull requests:**
|
7
15
|
|
data/Gemfile
CHANGED
data/kitchen-ec2.gemspec
CHANGED
@@ -31,7 +31,7 @@ Gem::Specification.new do |gem|
|
|
31
31
|
gem.add_development_dependency "yard", "~> 0.8"
|
32
32
|
|
33
33
|
# conflicts with finstyle 1.4.0
|
34
|
-
# gem.add_development_dependency "github_changelog_generator"
|
34
|
+
# gem.add_development_dependency "github_changelog_generator"
|
35
35
|
|
36
36
|
# style and complexity libraries are tightly version pinned as newer releases
|
37
37
|
# may introduce new and undesireable style choices which would be immediately
|
data/lib/kitchen/driver/ec2.rb
CHANGED
@@ -82,6 +82,13 @@ module Kitchen
|
|
82
82
|
|
83
83
|
required_config :aws_ssh_key_id
|
84
84
|
|
85
|
+
def initialize(*args, &block)
|
86
|
+
super
|
87
|
+
# Access these so they are eagerly loaded (since we'll reference them later)
|
88
|
+
::Aws::EC2::Client # rubocop:disable Lint/Void
|
89
|
+
::Aws::EC2::Resource # rubocop:disable Lint/Void
|
90
|
+
end
|
91
|
+
|
85
92
|
def self.validation_warn(driver, old_key, new_key)
|
86
93
|
driver.warn "WARN: The driver[#{driver.class.name}] config key `#{old_key}` " \
|
87
94
|
"is deprecated, please use `#{new_key}`"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kitchen-ec2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fletcher Nichol
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: test-kitchen
|
@@ -239,7 +239,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
239
239
|
version: '0'
|
240
240
|
requirements: []
|
241
241
|
rubyforge_project:
|
242
|
-
rubygems_version: 2.6.
|
242
|
+
rubygems_version: 2.6.3
|
243
243
|
signing_key:
|
244
244
|
specification_version: 4
|
245
245
|
summary: A Test Kitchen Driver for Amazon EC2
|
@@ -249,4 +249,3 @@ test_files:
|
|
249
249
|
- spec/kitchen/driver/ec2/instance_generator_spec.rb
|
250
250
|
- spec/kitchen/driver/ec2_spec.rb
|
251
251
|
- spec/spec_helper.rb
|
252
|
-
has_rdoc:
|