module Rudy
Rudy¶ ↑
Rudy is a development and deployment tool for the Amazon Elastic Compute Cloud (EC2). <a href=“Getting”>solutious.com/projects/rudy/getting-started“>Getting Started</a> today!
–
CONSIDER: http://docs.rackspacecloud.com/servers/api/v1.0/cs-devguide-20090713.pdf
++
Constants
- CONFIG_DIR
- CONFIG_FILE
- DEFAULT_EC2_HOST
- DEFAULT_EC2_PORT
- DEFAULT_ENVIRONMENT
- DEFAULT_LINUX_DEVICE
- DEFAULT_LINUX_FS
- DEFAULT_REGION
- DEFAULT_ROLE
- DEFAULT_WINDOWS_DEVICE
- DEFAULT_WINDOWS_FS
- DEFAULT_ZONE
- DELIM
- DOMAIN
SimpleDB accepts dashes in the domain name on creation and with the query syntax. However, with select syntax it says: “The specified query expression syntax is not valid”
- ID_MAP
- MAX_INSTANCES
- SSH_KEY_DIR
Public Class Methods
auto?()
click to toggle source
# File lib/rudy.rb, line 117 def Rudy.auto?; @@auto == true; end
debug?()
click to toggle source
# File lib/rudy.rb, line 121 def Rudy.debug?; @@debug == true; end
disable_auto()
click to toggle source
# File lib/rudy.rb, line 119 def Rudy.disable_auto; @@auto = false; end
disable_debug()
click to toggle source
# File lib/rudy.rb, line 123 def Rudy.disable_debug; @@debug = false; end
disable_quiet()
click to toggle source
# File lib/rudy.rb, line 115 def Rudy.disable_quiet; @@quiet = false; end
enable_auto()
click to toggle source
# File lib/rudy.rb, line 118 def Rudy.enable_auto; @@auto = true; end
enable_debug()
click to toggle source
# File lib/rudy.rb, line 122 def Rudy.enable_debug; @@debug = true; end
enable_quiet()
click to toggle source
# File lib/rudy.rb, line 114 def Rudy.enable_quiet; @@quiet = true; end
quiet?()
click to toggle source
# File lib/rudy.rb, line 113 def Rudy.quiet?; @@quiet == true; end
sysinfo()
click to toggle source
# File lib/rudy.rb, line 53 def Rudy.sysinfo @@sysinfo = SysInfo.new.freeze if @@sysinfo.nil? @@sysinfo end
Public Instance Methods
sysinfo()
click to toggle source
# File lib/rudy.rb, line 57 def sysinfo; Rudy.sysinfo; end