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 +4 -4
- data/HISTORY.md +5 -1
- data/lib/elasticity/instance_group.rb +1 -1
- data/lib/elasticity/version.rb +1 -1
- data/spec/lib/elasticity/instance_group_spec.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dbcf92882a9214132462533d34770d92deffa247
|
4
|
+
data.tar.gz: 93d0188ecd69661ead048656600d3ee602ab9ce7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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) - "
|
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
|
data/lib/elasticity/version.rb
CHANGED
@@ -187,7 +187,7 @@ describe Elasticity::InstanceGroup do
|
|
187
187
|
{
|
188
188
|
:volume_specification => {
|
189
189
|
:volume_type => "gp2",
|
190
|
-
:
|
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
|
-
:
|
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.
|
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:
|
11
|
+
date: 2017-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|