rudy 0.9.5.002 → 0.9.5.003
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/CHANGES.txt +2 -1
- data/lib/rudy.rb +2 -2
- data/lib/rudy/routines/passthrough.rb +1 -0
- data/rudy.gemspec +1 -1
- metadata +2 -2
data/CHANGES.txt
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
RUDY, CHANGES
|
2
2
|
|
3
3
|
|
4
|
-
#### 0.9.6 (2009-10
|
4
|
+
#### 0.9.6 (2009-10-??) ###########################
|
5
5
|
|
6
6
|
* FIXED: Include Gibbler for REXML
|
7
|
+
* CHANGE: Increased max instances from 5 to 20.
|
7
8
|
|
8
9
|
|
9
10
|
#### 0.9.5 (2009-09-01) ###########################
|
data/lib/rudy.rb
CHANGED
@@ -42,7 +42,7 @@ module Rudy
|
|
42
42
|
MAJOR = 0.freeze
|
43
43
|
MINOR = 9.freeze
|
44
44
|
TINY = 5.freeze
|
45
|
-
PATCH = '
|
45
|
+
PATCH = '003'.freeze
|
46
46
|
end
|
47
47
|
def self.to_s; [MAJOR, MINOR, TINY, PATCH].join('.'); end
|
48
48
|
def self.to_f; self.to_s.to_f; end
|
@@ -84,7 +84,7 @@ module Rudy
|
|
84
84
|
DEFAULT_WINDOWS_DEVICE = 'xvdf'
|
85
85
|
DEFAULT_LINUX_DEVICE = '/dev/sdh'
|
86
86
|
|
87
|
-
MAX_INSTANCES =
|
87
|
+
MAX_INSTANCES = 20.freeze
|
88
88
|
|
89
89
|
ID_MAP = {
|
90
90
|
:instance => 'i',
|
@@ -17,6 +17,7 @@ module Rudy; module Routines;
|
|
17
17
|
@machines = Rudy::Machines.list || []
|
18
18
|
@@rset = Rudy::Routines::Handlers::RyeTools.create_set @machines
|
19
19
|
}
|
20
|
+
|
20
21
|
return @machines unless run?
|
21
22
|
Rudy::Routines.runner(@routine, @@rset, @@lbox, @argv)
|
22
23
|
Rudy::Routines::Handlers::Depends.execute_all @after
|
data/rudy.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rudy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.5.
|
4
|
+
version: 0.9.5.003
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Delano Mandelbaum
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-11-04 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|