ec2launcher 1.6.7 → 1.6.9
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 +8 -8
- data/CHANGELOG.md +8 -0
- data/lib/ec2launcher.rb +1 -1
- data/lib/ec2launcher/dsl/application.rb +3 -3
- data/lib/ec2launcher/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
M2E2M2JkNWEyNzQyMGI3ZmQ4NzM3MDdkNWY3Y2JmZGNkNmVlNGUzYQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NDA0YTdlZGM0N2ZhNGMwZWY2ZDgwZGFlMjE2OTFiZGYxOWE5MTM0YQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NmE3ZGUwMWUzYTIxNjU5YjZmZjY3MDJkMmYyNDA5ODlkOGM2NmE3NzE2ZTFm
|
10
|
+
ZGI1NDJmOWY2MzM5Mzc5YjRkYjY5OTE1ZTRhNzJkZGY0YjY0YmZkNDQxZTI5
|
11
|
+
YzI1ZGNmOTA4ZWM5MTZkMjg4YjM5OTYwYTA5MjYzZTA4MWM3MTQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NDdhNDIxOGQ5Zjg3MjYyMmIwMjRiZmEyZTIxYzIwZWJhYjMzZmQ1MzQ2MmEz
|
14
|
+
MDIyOGRhOGVlYTRlMmYyMDg1YWZlZDVmNzEyN2E3MjU4ZDFlZjZjZjAzNTMz
|
15
|
+
MGJiYWZlODIzM2Q2YjBiNjQ5MmNjMDNiM2RjYjkyNTI4ZjlkZjA=
|
data/CHANGELOG.md
CHANGED
data/lib/ec2launcher.rb
CHANGED
@@ -598,7 +598,7 @@ module EC2Launcher
|
|
598
598
|
# Only include ephemeral devices if we're using provisioned IOPS for the EBS volumes
|
599
599
|
launch_mapping[:block_device_mappings] = {}
|
600
600
|
launch_options[:block_device_mappings].keys.sort.each do |block_device_name|
|
601
|
-
if block_device_name =~ /^ephemeral/
|
601
|
+
if launch_options[:block_device_mappings][block_device_name] =~ /^ephemeral/
|
602
602
|
launch_mapping[:block_device_mappings][block_device_name] = launch_options[:block_device_mappings][block_device_name]
|
603
603
|
end
|
604
604
|
end
|
@@ -200,10 +200,10 @@ module EC2Launcher
|
|
200
200
|
@instance_type = other_server.instance_type if other_server.instance_type
|
201
201
|
@name_suffix = other_server.name_suffix if other_server.name_suffix
|
202
202
|
|
203
|
-
if
|
203
|
+
if other_server.iam_profile
|
204
204
|
@iam_profile = {} if @iam_profile.nil?
|
205
|
-
|
206
|
-
@iam_profile[env_name] =
|
205
|
+
other_server.iam_profile.keys.each do |env_name|
|
206
|
+
@iam_profile[env_name] = other_server.iam_profile[env_name]
|
207
207
|
end
|
208
208
|
end
|
209
209
|
|
data/lib/ec2launcher/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ec2launcher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sean Laurent
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-03-
|
11
|
+
date: 2013-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk
|