Class: Central::Cli::Stacks::RemoveCommand
- Inherits:
-
Clamp::Command
- Object
- Clamp::Command
- Central::Cli::Stacks::RemoveCommand
- Defined in:
- lib/central/cli/stacks/remove_command.rb
Instance Method Summary collapse
Methods included from Common
#calculate_filesystem_stats, #calculate_loads, #calculate_mem_used, #find_stack_by_name, #print_stack, #stacks, #to_gigabytes
Methods included from Common
#access_token=, #add_master, #api_url, #api_url=, #clear_current_stack, #client, #current_master, #current_master=, #current_master_index, #current_stack, #current_stack=, #ensure_custom_ssl_ca, #require_api_url, #require_current_stack, #require_token, #reset_client, #save_settings, #settings, #settings_filename
Instance Method Details
#execute ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/central/cli/stacks/remove_command.rb', line 10 def execute require_api_url token = require_token stack = find_stack_by_name(name) if !stack.nil? response = client(token).delete("stacks/#{stack['id']}") if response clear_current_stack if stack['id'] == current_stack puts "removed #{stack['name'].cyan}" end else abort "Could not resolve stack by name [#{name}]. For a list of existing stacks please run: cm stack list".colorize(:red) end end |