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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MzdjNjY4ZGZiYmQyMjFjMDA2YzU0MDI0NjkwNmUxYTNmMDg2OTUwOA==
4
+ M2FiZjA3NzNkODIzZjk1NGMwYjU2NGFhYmFkNzI1YTAzYzBkY2E1ZA==
5
5
  data.tar.gz: !binary |-
6
- Yjc2ZGE3ZGNlZGQ3YTU4ODkzMDNmMDc1OTlmMjgzNjUzMWZiMWEwYw==
6
+ OWY3ZWUzMDQ4M2M4Y2RhY2EzZGI3YjRmMDAzNzkwODhmM2YzNWVmZg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YWUzMDg0ZTYxY2M5NTQ0Y2U5NDVmZGY4NzFiYThmMDcwZTQxNDM5ZjI3ODg0
10
- YTZkNTdlY2JmYTI1ZDcyMTgxZjJlZDZjNTZjOGQxNDMyZDQ1OTVlMzFmZjll
11
- ZWRlMDljYjlmYzRmNDlhN2YxM2VhOGIxNDQ1Zjk0NjViOWVmOTY=
9
+ OTBhN2E2MzNmN2U5NDhkYWZjNTk1M2MyZDY0YzQ4YTRkNzExNzU1NDliZmE2
10
+ ZTY0NmJiZGRiNzY4Y2JkMTFjMjA4YjllZjg4NWQ5OGY1MTU4YzkxN2Y5NTY3
11
+ MmMzYWMwYzU5ZDY1ZDljYjBlMzE2YjBhNjEzYmRkMWIxNzc3NzM=
12
12
  data.tar.gz: !binary |-
13
- YWUyYmI4Yjc2YmNiNDY4ZDhlNzYxZmVhZGQ3MmQwZDRjYjIzNjExN2RiODlh
14
- MGM5YzQ0MDk3YjFhNGYxZTg2ZGM0MTlmZGQ5MmUxMTBjZDZjMTJmM2U0NWRk
15
- M2M3OGVlM2Y1ZmRkNzNjNWZjNDFlNTNiMDQ2ZGY5ZjMxNmYzMDE=
13
+ NzQ2ODI0YTNiZjg0OGM0YzA5MjZlZDg4MDBlNjFkNmRjZGMyZTQ2YmY1ZmI0
14
+ ZmI3YjAzZmRkMDc5MDM2NjU5OGJhM2JkZmEwM2MxYWVjMjk2OWE0YTIxYmZl
15
+ NjhiZGNjNWVlOGZmZDhjOWM5M2Y0NjU2ZDk4NDhkMTI1YThiOTc=
data/.travis.yml CHANGED
@@ -2,3 +2,5 @@ language: ruby
2
2
  rvm:
3
3
  - 1.9.3
4
4
  - 2.0.0
5
+ - 2.1.0
6
+ - 2.1.1
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 ;)
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Elasticity
2
- VERSION = '3.0'
2
+ VERSION = '3.0.1'
3
3
  end
@@ -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: '3.0'
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-02-15 00:00:00.000000000 Z
11
+ date: 2014-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client