build-cloud 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +2 -0
- data/build-cloud.gemspec +1 -1
- data/lib/build-cloud/instance.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
|
+
MWQ3ZDk5MGU0MmI1YTQ4YWZhYTM0MGU2MDgzNzY2ODVjZDNiOGIzMA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MDJhMDE2ZDUzYWQ4MTEzNDA5OTU1MTY3ZGNkMjNkNDk3ZDdiN2I1Mw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OGI5NjBlNTcxOTBhNzUzZmU3OWNkNzQyZWY5ODZiZDNkZWEzZGI0ZDc2NjE1
|
10
|
+
MWRmMTdjMTI2MDk5YWUyMWI4ZmFiMGZkNzM3YjQyNzk2Y2NiODQ3YjRhNmRl
|
11
|
+
MWVmYjRlZjA3ODZjYzcxMWVkZThhZGYxYjRiNWMyYWQyNWVmY2Y=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZDcyZWZkMjQxMTEwZTFmMDJmYmIzMDg2ZmE0ZjNhOGYwODUwYmZhNGU5ZTMz
|
14
|
+
NTNkMDMxODVmYTMwMmI0YTUzZWRmZGU1OWY3OThhOTE4ZWVjYmE5YTJkZTI2
|
15
|
+
MDZmODkyMGRiMDYzNTIzMTliNjIzMGIwNjRkMTM3MjY2YTczNjQ=
|
data/README.md
CHANGED
@@ -22,6 +22,8 @@ See the command line help for `build-cloud`.
|
|
22
22
|
|
23
23
|
## Changelog
|
24
24
|
|
25
|
+
2014-10-03 - version 0.0.7 - instance creation previously had a 30 second wait to transition from pending to running state. This was insufficient, and has been increased to 60 seconds.
|
26
|
+
|
25
27
|
2014-09-23 - version 0.0.6 - correctly name tags VPCs, and now allows you to refer to the public IP of a network interface (via `:network_interface_public_ip` in a Route 53 record set.
|
26
28
|
|
27
29
|
2014-09-16 - version 0.0.5 - now supports creation of DHCP Options Sets, and specifying them using the `:dhcp_options_set_name` key to a VPC.
|
data/build-cloud.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "build-cloud"
|
7
|
-
spec.version = "0.0.
|
7
|
+
spec.version = "0.0.7"
|
8
8
|
spec.authors = ["The Scale Factory"]
|
9
9
|
spec.email = ["info@scalefactory.com"]
|
10
10
|
spec.summary = %q{Tools for building resources in AWS}
|
data/lib/build-cloud/instance.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: build-cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Scale Factory
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-10-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|