elasticity 6.0.9 → 6.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b5a420f1b650e0fa6585fd2920421cfd6b486644
4
- data.tar.gz: 1154a380992793fe9df9547595563066f8c0b6e7
3
+ metadata.gz: dbcf92882a9214132462533d34770d92deffa247
4
+ data.tar.gz: 93d0188ecd69661ead048656600d3ee602ab9ce7
5
5
  SHA512:
6
- metadata.gz: 81cb07a81d797dee5892a142d09ae459d4cefd0796407f0b509787db1b3aa0174bdd9290d329780659f0cdf41c7e8d732076640cd628a86d9e44b9c14671ae40
7
- data.tar.gz: 81c09d734cea32f997f68932d0e36aa1fb0d11ee62b1ae46560334392dccc4e433094930de311d6f29fa1bb6ec920e801b1b62bdd95ee8c9570a3f26dcdd6a8a
6
+ metadata.gz: 5742f6c8ac1fbbc2df514b9711374d9e4ec3723e6513ddfe8a61395aababcf3361e6ba6cbac3f5d7346ed5a0a8b7f5cacdbe97a2a57638c08122cdf16be0d23c
7
+ data.tar.gz: 51bde4a0262b62b7ab7fdf19c0a33255700fef3eb3c50f3bb27f182a78ae73fecc2ed87518de4929ed984645240f5e83b5a73fdc6e2670f5ba58194d0b9609f5
data/HISTORY.md CHANGED
@@ -1,6 +1,10 @@
1
+ ## 6.0.10 - January 16, 2017
2
+
3
+ - Including PR [#132](https://github.com/rslifka/elasticity/pull/132) - "Fix size_in_gb not being parsed correctly for EBS volumes". Thank you [@jbeemster](https://github.com/jbeemster)!
4
+
1
5
  ## 6.0.9 - December 20, 2016
2
6
 
3
- - Including PR [#130](https://github.com/rslifka/elasticity/pull/130) - "AAdd support for EBS". Thank you [@jbeemster](https://github.com/jbeemster)!
7
+ - Including PR [#130](https://github.com/rslifka/elasticity/pull/130) - "Add support for EBS". Thank you [@jbeemster](https://github.com/jbeemster)!
4
8
  - Including PR [#131](https://github.com/rslifka/elasticity/pull/131) - "Deprecated Support for Ruby <= 2.2".
5
9
 
6
10
  ## 6.0.8 - February 22, 2016
@@ -115,7 +115,7 @@ module Elasticity
115
115
  {
116
116
  :volume_specification => {
117
117
  :volume_type => @volume_type,
118
- :size_in_gb => @size_in_gb,
118
+ :size_in_g_b => @size_in_gb,
119
119
  }.tap do |spec|
120
120
  spec.merge!(:iops => @iops) if @volume_type == "io1"
121
121
  end,
@@ -1,3 +1,3 @@
1
1
  module Elasticity
2
- VERSION = '6.0.9'
2
+ VERSION = '6.0.10'
3
3
  end
@@ -187,7 +187,7 @@ describe Elasticity::InstanceGroup do
187
187
  {
188
188
  :volume_specification => {
189
189
  :volume_type => "gp2",
190
- :size_in_gb => 1,
190
+ :size_in_g_b => 1,
191
191
  },
192
192
  :volumes_per_instance => 1
193
193
  },
@@ -195,7 +195,7 @@ describe Elasticity::InstanceGroup do
195
195
  :volume_specification => {
196
196
  :volume_type => "io1",
197
197
  :iops => 9999,
198
- :size_in_gb => 10000,
198
+ :size_in_g_b => 10000,
199
199
  },
200
200
  :volumes_per_instance => 10
201
201
  },
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: 6.0.9
4
+ version: 6.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Slifka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-19 00:00:00.000000000 Z
11
+ date: 2017-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client