the-maestro 0.3.6 → 0.3.7
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.
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/lib/maestro/cloud/aws.rb +3 -3
- data/the-maestro.gemspec +2 -2
- metadata +2 -2
data/README.rdoc
CHANGED
|
@@ -22,7 +22,7 @@ Add the following gem dependency to your Rails project's <code>config/environmen
|
|
|
22
22
|
|
|
23
23
|
Rails::Initializer.run do |config|
|
|
24
24
|
|
|
25
|
-
config.gem "the-maestro", :lib => "maestro", :version => "0.3.
|
|
25
|
+
config.gem "the-maestro", :lib => "maestro", :version => "0.3.7", :source => "http://gemcutter.org"
|
|
26
26
|
|
|
27
27
|
end
|
|
28
28
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.7
|
data/lib/maestro/cloud/aws.rb
CHANGED
|
@@ -733,9 +733,9 @@ module Maestro
|
|
|
733
733
|
|
|
734
734
|
# Ensures that the Nodes of this Cloud are terminated
|
|
735
735
|
def ensure_nodes_terminated
|
|
736
|
-
ensure_elb_nodes_terminated
|
|
737
|
-
ensure_ec2_nodes_terminated
|
|
738
|
-
ensure_rds_nodes_terminated
|
|
736
|
+
ensure_elb_nodes_terminated if !@elb_nodes.empty?
|
|
737
|
+
ensure_ec2_nodes_terminated if !@ec2_nodes.empty?
|
|
738
|
+
ensure_rds_nodes_terminated if !@rds_nodes.empty?
|
|
739
739
|
end
|
|
740
740
|
|
|
741
741
|
# Ensures that the Ec2 Nodes of this Cloud are terminated
|
data/the-maestro.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{the-maestro}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.7"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Brian Ploetz"]
|
|
12
|
-
s.date = %q{2010-06-
|
|
12
|
+
s.date = %q{2010-06-29}
|
|
13
13
|
s.description = %q{Maestro is a cloud provisioning, configuration, and management utility for your Ruby and Ruby On Rails applications.}
|
|
14
14
|
s.extra_rdoc_files = [
|
|
15
15
|
"LICENSE",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: the-maestro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Ploetz
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2010-06-
|
|
12
|
+
date: 2010-06-29 00:00:00 -04:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|