Class: DeleteRunner
Instance Attribute Summary collapse
-
#cloud ⇒ Object
readonly
Returns the value of attribute cloud.
-
#stack ⇒ Object
readonly
Returns the value of attribute stack.
Instance Method Summary collapse
-
#initialize(opts) ⇒ DeleteRunner
constructor
A new instance of DeleteRunner.
- #start ⇒ Object
Methods included from Common
#audio?, #banner, #bootstrap_aws, #build_nodes, #calculate_templates, #conf, #create_infranodes_json, #duration, #gen_ssh_key, #gen_x509_cert, #info, #infranodes, #is_mac?, #linux, #lock, #logs, #parse_log, #update_lock, #update_template, #warn, #wombat, #workstations
Constructor Details
#initialize(opts) ⇒ DeleteRunner
Returns a new instance of DeleteRunner.
9 10 11 12 |
# File 'lib/wombat/delete.rb', line 9 def initialize(opts) @stack = opts.stack @cloud = opts.cloud.nil? ? "aws" : opts.cloud end |
Instance Attribute Details
#cloud ⇒ Object (readonly)
Returns the value of attribute cloud.
7 8 9 |
# File 'lib/wombat/delete.rb', line 7 def cloud @cloud end |
#stack ⇒ Object (readonly)
Returns the value of attribute stack.
7 8 9 |
# File 'lib/wombat/delete.rb', line 7 def stack @stack end |
Instance Method Details
#start ⇒ Object
14 15 16 |
# File 'lib/wombat/delete.rb', line 14 def start cfn_delete_stack(stack) end |