Parent

Included Modules

Class/Module Index [+]

Quicksearch

Rudy::CLI::CommandBase

Attributes

config[R]

Protected Instance Methods

execute_action(emsg="Failed", &action) click to toggle source
# File lib/rudy/cli/base.rb, line 65
def execute_action(emsg="Failed", &action)
  begin
    ret = action.call
    raise emsg unless ret
    ret
  rescue Rudy::AWS::EC2::NoAMI => ex
    raise Drydock::OptError.new('-a', @alias)
  end
end
execute_check(level=:medium) click to toggle source
# File lib/rudy/cli/base.rb, line 75
def execute_check(level=:medium)
  ret = Annoy.are_you_sure?(level)
  exit 0 unless ret
  ret
end
init() click to toggle source
# File lib/rudy/cli/base.rb, line 11
def init

  if Drydock.debug?
    #Caesars.enable_debug
    Rudy.enable_debug
  end

  # The CLI wants output!
  Rudy::Huxtable.update_logger STDOUT

  # Send The Huxtables the global values from the command-line
  Rudy::Huxtable.update_global @global

  # Reload configuration. This must come after update_global 
  # so it will catch the @@global.config path (if supplied).
  begin
    Rudy::Huxtable.update_config
  rescue Caesars::SyntaxError => ex
    le ex.message
    le ex.backtrace if @@global.verbose > 0
    exit 81
  end
  
  @@global.nocolor ? String.disable_color : String.enable_color
  @@global.auto ? Annoy.enable_skip : Annoy.disable_skip
  
  # ANSI codes look like garbage in DOS
  if Rudy.sysinfo.os.to_s == 'windows'
    String.disable_color 
    raise Rudy::Error, 'Ruby 1.9 is not supported (yet)' if Rudy.sysinfo.ruby == [1,9,1]
  end
  
  unless @@global.accesskey && @@global.secretkey
    le "No AWS credentials. Check your configs!"
    le "Try: rudy init"
    exit 1
  end

  #if @@global.environment =~ /^prod/ && Rudy.debug?
  #  li Rudy::Utils.banner("PRODUCTION ACCESS IS DISABLED IN DEBUG MODE")
  #  exit 1
  #end

  if @@global.verbose >= 4    # -vvvv
    format = @@global.format == :json ? :json : :yaml
    gcopy = @@global.dup
    gcopy.secretkey = "[HIDDEN]"
    li "# GLOBALS: ", gcopy.dump(format)
  end
  
  Rudy::Metadata.connect @@global.accesskey, @@global.secretkey, @@global.region
  Rudy::AWS::EC2.connect @@global.accesskey, @@global.secretkey, @@global.region
end
machine_separator(name, awsid) click to toggle source
# File lib/rudy/cli/base.rb, line 114
def machine_separator(name, awsid)
  ('%s %-50s awsid: %s ' % [$/, name, awsid]).att(:reverse)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.