elasticity 3.0 → 3.0.1
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/.travis.yml +2 -0
- data/HISTORY.md +5 -0
- data/lib/elasticity/job_flow.rb +1 -1
- data/lib/elasticity/version.rb +1 -1
- data/spec/lib/elasticity/job_flow_spec.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
|
+
M2FiZjA3NzNkODIzZjk1NGMwYjU2NGFhYmFkNzI1YTAzYzBkY2E1ZA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OWY3ZWUzMDQ4M2M4Y2RhY2EzZGI3YjRmMDAzNzkwODhmM2YzNWVmZg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OTBhN2E2MzNmN2U5NDhkYWZjNTk1M2MyZDY0YzQ4YTRkNzExNzU1NDliZmE2
|
10
|
+
ZTY0NmJiZGRiNzY4Y2JkMTFjMjA4YjllZjg4NWQ5OGY1MTU4YzkxN2Y5NTY3
|
11
|
+
MmMzYWMwYzU5ZDY1ZDljYjBlMzE2YjBhNjEzYmRkMWIxNzc3NzM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NzQ2ODI0YTNiZjg0OGM0YzA5MjZlZDg4MDBlNjFkNmRjZGMyZTQ2YmY1ZmI0
|
14
|
+
ZmI3YjAzZmRkMDc5MDM2NjU5OGJhM2JkZmEwM2MxYWVjMjk2OWE0YTIxYmZl
|
15
|
+
NjhiZGNjNWVlOGZmZDhjOWM5M2Y0NjU2ZDk4NDhkMTI1YThiOTc=
|
data/.travis.yml
CHANGED
data/HISTORY.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## 3.0.1 - March 26, 2014
|
2
|
+
|
3
|
+
- Fix for [Issue #60](https://github.com/rslifka/elasticity/issues/60), "Specifying a VPC subnet does not work".
|
4
|
+
- Add support for Ruby 2.1.0 and 2.1.1.
|
5
|
+
|
1
6
|
## 3.0 - February 15, 2014
|
2
7
|
|
3
8
|
- Major/minor bump because of breaking API changes to `Elasticity::BootstrapAction` due to [Issue #55](https://github.com/rslifka/elasticity/issues/55). After spending some time deprecating, I realized I don't have the code bandwidth to do it in a way that I would be happy with. Move fast and break things ;)
|
data/lib/elasticity/job_flow.rb
CHANGED
@@ -185,7 +185,7 @@ module Elasticity
|
|
185
185
|
}
|
186
186
|
}
|
187
187
|
}
|
188
|
-
preamble.merge!(:ec2_subnet_id => @ec2_subnet_id) if @ec2_subnet_id
|
188
|
+
preamble[:instances].merge!(:ec2_subnet_id => @ec2_subnet_id) if @ec2_subnet_id
|
189
189
|
preamble[:instances].merge!(:ec2_key_name => @ec2_key_name) if @ec2_key_name
|
190
190
|
preamble
|
191
191
|
end
|
data/lib/elasticity/version.rb
CHANGED
@@ -419,7 +419,7 @@ describe Elasticity::JobFlow do
|
|
419
419
|
context 'when a VPC subnet ID is specified' do
|
420
420
|
it 'should include it in the preamble' do
|
421
421
|
subject.ec2_subnet_id = 'subnet-118b9d79'
|
422
|
-
subject.send(:jobflow_preamble).should be_a_hash_including({:ec2_subnet_id => 'subnet-118b9d79'})
|
422
|
+
subject.send(:jobflow_preamble)[:instances].should be_a_hash_including({:ec2_subnet_id => 'subnet-118b9d79'})
|
423
423
|
end
|
424
424
|
end
|
425
425
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elasticity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Slifka
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-03-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|