rivet 3.0.1 → 3.0.2
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 +4 -4
- data/CHANGELOG.md +4 -1
- data/lib/rivet/ec2/ec2.rb +1 -1
- data/lib/rivet/version.rb +1 -1
- 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: 4b5ae98f4c038d6f56387121ca02c4c7b87fca36
|
|
4
|
+
data.tar.gz: 3029d3b0df7f1ebc0608487e7538cb5518703b77
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b548672fc231c0f4f708c9dcbd1e0555a1aac2dacd550f12dff545b6d2633989ed415de404ca3e5ba9eb90d4d521ac3d32fb61a1f24cad789471505a76dd98ca
|
|
7
|
+
data.tar.gz: 6970ec474de2c052e5c072cc39b46c07b854c3ab0d0dd19e05def07c29e841444815de178c07dedf679419cb37b1464b73922ab24d31b6cc24dd5730facea649
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
Rivet CHANGELOG
|
|
2
2
|
===
|
|
3
3
|
|
|
4
|
+
3.0.2 -
|
|
5
|
+
---
|
|
6
|
+
* Fixes bug where rivet would try to add tags to an ec2 instances before it existed
|
|
7
|
+
|
|
4
8
|
3.0.1 -
|
|
5
9
|
---
|
|
6
10
|
* Fixes undefined method join bug in displaying launch configuration diffs
|
|
7
11
|
|
|
8
|
-
|
|
9
12
|
3.0.0 -
|
|
10
13
|
---
|
|
11
14
|
* Adds functionality to launch regular EC2 instances
|
data/lib/rivet/ec2/ec2.rb
CHANGED
|
@@ -83,8 +83,8 @@ module Rivet
|
|
|
83
83
|
# just go ahead and make that more sane
|
|
84
84
|
instances = [instances] unless instances.respond_to? :each
|
|
85
85
|
|
|
86
|
-
add_tags(instances,tags_to_add)
|
|
87
86
|
ready_instances = wait_until_running instances
|
|
87
|
+
add_tags(ready_instances,tags_to_add)
|
|
88
88
|
add_eips(ready_instances,eips_to_add) if eips_to_add
|
|
89
89
|
add_network_interfaces(ready_instances,enis_to_add) if enis_to_add
|
|
90
90
|
end
|
data/lib/rivet/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rivet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Bianco
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-12-
|
|
11
|
+
date: 2014-12-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk
|