rudy 0.7.6 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES.txt +2 -1
- data/README.rdoc +1 -1
- data/lib/rudy.rb +2 -2
- data/rudy.gemspec +1 -1
- metadata +1 -1
data/CHANGES.txt
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
RUDY, CHANGES
|
2
2
|
|
3
3
|
|
4
|
-
#### 0.
|
4
|
+
#### 0.8.0 (2009-05-18) ###############################
|
5
5
|
|
6
6
|
* ADDED: Better windows instance support during routines
|
7
7
|
* ADDED: "os" keyword to routines DSL
|
8
8
|
* ADDED: Config defaults for "yes" global (thanks sabat)
|
9
9
|
* FIXED: Handle exception when assigning inappropriate IP Address.
|
10
|
+
* CHANGE: Some refactoring to Rudy::Machines and Rudy::Routines
|
10
11
|
|
11
12
|
|
12
13
|
#### 0.7.5 (2009-05-12) ###############################
|
data/README.rdoc
CHANGED
@@ -84,10 +84,10 @@ NOTE: <em>If you are not installing via RubyGems, you need to make sure the depe
|
|
84
84
|
* Colin Brumelle
|
85
85
|
* Sam Aaron
|
86
86
|
* Everyone at Utrecht.rb[http://groups.google.com/group/utrecht-rb]
|
87
|
+
* Steve Abatangle
|
87
88
|
* Jamis Buck for Net::SSH and friends
|
88
89
|
* Glenn Rempe for amazon-ec2
|
89
90
|
* Marcel Molina Jr. for aws-s3
|
90
|
-
* sabat[http://github.com/sabat]
|
91
91
|
* Keshia Knight Pulliam
|
92
92
|
|
93
93
|
|
data/lib/rudy.rb
CHANGED
@@ -37,8 +37,8 @@ module Rudy
|
|
37
37
|
module VERSION #:nodoc:
|
38
38
|
unless defined?(MAJOR)
|
39
39
|
MAJOR = 0.freeze
|
40
|
-
MINOR =
|
41
|
-
TINY =
|
40
|
+
MINOR = 8.freeze
|
41
|
+
TINY = 0.freeze
|
42
42
|
end
|
43
43
|
def self.to_s; [MAJOR, MINOR, TINY].join('.'); end
|
44
44
|
def self.to_f; self.to_s.to_f; end
|
data/rudy.gemspec
CHANGED