rudy 0.7.6 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/CHANGES.txt +2 -1
  2. data/README.rdoc +1 -1
  3. data/lib/rudy.rb +2 -2
  4. data/rudy.gemspec +1 -1
  5. metadata +1 -1
data/CHANGES.txt CHANGED
@@ -1,12 +1,13 @@
1
1
  RUDY, CHANGES
2
2
 
3
3
 
4
- #### 0.7.6 (2009-05-18) ###############################
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 = 7.freeze
41
- TINY = 6.freeze
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
@@ -1,7 +1,7 @@
1
1
  @spec = Gem::Specification.new do |s|
2
2
  s.name = "rudy"
3
3
  s.rubyforge_project = 'rudy'
4
- s.version = "0.7.6"
4
+ s.version = "0.8.0"
5
5
  s.summary = "Rudy: Not your grandparents' EC2 deployment tool."
6
6
  s.description = s.summary
7
7
  s.author = "Delano Mandelbaum"
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.7.6
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delano Mandelbaum