rudy 0.6.3 → 0.6.4

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.
@@ -14,6 +14,15 @@ All configuration is organized into the zones, environments, and roles that you
14
14
 
15
15
  <b>NOTE: This is an ALPHA release. That means Rudy's not ready for production use! See Alpha Warning.</b>
16
16
 
17
+ == Features
18
+
19
+ * Single command startup and shutdown
20
+ * Automatic disk creation. Define disks with a DSL and Rudy does the dirty work (creates EBS volume, attach to instance, format, and mount).
21
+ * Supports any Amazon machine image (AMI) (Windows images should work but need more testing)
22
+ * Complete command-line interface for EC2 (a replacement for Amazon's API tools). See bin/rudy-ec2.
23
+ * Basic command-line interface for SDB and S3 (create and delete buckets and volumes). See bin/rudy-sdb and bin/rudy-s3.
24
+
25
+
17
26
  == Installation
18
27
 
19
28
  === Step 1 of 2 (get Rudy on to your machine):
@@ -65,7 +65,7 @@ module Rudy
65
65
  unless defined?(MAJOR)
66
66
  MAJOR = 0.freeze
67
67
  MINOR = 6.freeze
68
- TINY = 3.freeze
68
+ TINY = 4.freeze
69
69
  end
70
70
  def self.to_s; [MAJOR, MINOR, TINY].join('.'); end
71
71
  def self.to_f; self.to_s.to_f; end
@@ -1,9 +1,9 @@
1
1
 
2
2
 
3
3
  require 'EC2' # What a
4
- require 'aws_sdb' # motley
4
+ #require 'aws_sdb' # motley
5
5
  # Disabled b/c it's not Ruby 1.9 compatible
6
- #require 'aws/s3' # crew
6
+ require 'aws/s3' # crew
7
7
 
8
8
  module Rudy
9
9
  module AWS
@@ -92,7 +92,7 @@ module Rudy::AWS
92
92
 
93
93
  end
94
94
 
95
- class Keypairs
95
+ class Keypairs #:nodoc:
96
96
  def initialize(*args)
97
97
  raise "Oops! The correct class uses a capital 'P': Rudy::AWS::EC2::KeyPairs"
98
98
  end
@@ -293,6 +293,4 @@ module Rudy
293
293
  end
294
294
  end
295
295
 
296
- require 'aws_sdb/error'
297
- require 'aws_sdb/service'
298
296
 
@@ -1,4 +1,4 @@
1
- ``
1
+
2
2
  module Rudy
3
3
  require 'caesars'
4
4
 
@@ -1,4 +1,4 @@
1
-
1
+
2
2
 
3
3
 
4
4
  module Rudy
@@ -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.6.3"
4
+ s.version = "0.6.4"
5
5
  s.summary = "Rudy: Not your grandparent's 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.6.3
4
+ version: 0.6.4
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-04-19 00:00:00 -04:00
12
+ date: 2009-04-20 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency