knife-ec2 0.18.0 → 0.18.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.expeditor/config.yml +41 -0
- data/.expeditor/update_version.sh +12 -0
- data/.gitignore +41 -41
- data/CHANGELOG.md +132 -117
- data/CONTRIBUTING.md +245 -216
- data/DOC_CHANGES.md +17 -17
- data/Gemfile +4 -4
- data/LICENSE +201 -201
- data/RELEASE_NOTES.md +17 -17
- data/Rakefile +56 -56
- data/VERSION +1 -0
- data/lib/chef/knife/ec2_server_create.rb +1588 -1577
- data/lib/chef/knife/ec2_server_delete.rb +140 -140
- data/lib/chef/knife/s3_source.rb +49 -49
- data/lib/knife-ec2/version.rb +6 -6
- data/spec/unit/ec2_server_create_spec.rb +2728 -2703
- data/spec/unit/ec2_server_delete_spec.rb +141 -141
- data/spec/unit/s3_source_deps_spec.rb +24 -24
- data/spec/unit/s3_source_spec.rb +75 -75
- metadata +6 -3
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knife-ec2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.18.
|
4
|
+
version: 0.18.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Jacob
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-07-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: fog-aws
|
@@ -117,6 +117,8 @@ executables: []
|
|
117
117
|
extensions: []
|
118
118
|
extra_rdoc_files: []
|
119
119
|
files:
|
120
|
+
- ".expeditor/config.yml"
|
121
|
+
- ".expeditor/update_version.sh"
|
120
122
|
- ".github/ISSUE_TEMPLATE.md"
|
121
123
|
- ".gitignore"
|
122
124
|
- ".travis.yml"
|
@@ -128,6 +130,7 @@ files:
|
|
128
130
|
- README.md
|
129
131
|
- RELEASE_NOTES.md
|
130
132
|
- Rakefile
|
133
|
+
- VERSION
|
131
134
|
- knife-ec2.gemspec
|
132
135
|
- lib/chef/knife/ec2_ami_list.rb
|
133
136
|
- lib/chef/knife/ec2_base.rb
|
@@ -165,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
165
168
|
version: '0'
|
166
169
|
requirements: []
|
167
170
|
rubyforge_project:
|
168
|
-
rubygems_version: 2.6
|
171
|
+
rubygems_version: 2.7.6
|
169
172
|
signing_key:
|
170
173
|
specification_version: 4
|
171
174
|
summary: EC2 Support for Chef's Knife Command
|