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.
- data/README.rdoc +9 -0
- data/lib/rudy.rb +1 -1
- data/lib/rudy/aws.rb +2 -2
- data/lib/rudy/aws/ec2/keypair.rb +1 -1
- data/lib/rudy/aws/sdb.rb +0 -2
- data/lib/rudy/config.rb +1 -1
- data/lib/rudy/machines.rb +1 -1
- data/rudy.gemspec +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -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):
|
data/lib/rudy.rb
CHANGED
data/lib/rudy/aws.rb
CHANGED
data/lib/rudy/aws/ec2/keypair.rb
CHANGED
data/lib/rudy/aws/sdb.rb
CHANGED
data/lib/rudy/config.rb
CHANGED
data/lib/rudy/machines.rb
CHANGED
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.6.
|
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-
|
12
|
+
date: 2009-04-20 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|