Class: ThreeScaleToolbox::Commands::RemoteCommand::RemoteRemoveSubcommand

Inherits:
Cri::CommandRunner
  • Object
show all
Includes:
ThreeScaleToolbox::Command
Defined in:
lib/3scale_toolbox/commands/remote_command/remote_remove.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from ThreeScaleToolbox::Command

#config, #config_file, #exit_with_message, #fetch_required_option, included, #remotes, #threescale_client, #verbose, #verify_ssl

Class Method Details

.commandObject



7
8
9
10
11
12
13
14
15
16
# File 'lib/3scale_toolbox/commands/remote_command/remote_remove.rb', line 7

def self.command
  Cri::Command.define do
    name        'remove'
    usage       'remove <name>'
    summary     'remote remove'
    description 'Remove remote from list'
    param       :remote_name
    runner RemoteRemoveSubcommand
  end
end

Instance Method Details

#runObject



18
19
20
21
22
# File 'lib/3scale_toolbox/commands/remote_command/remote_remove.rb', line 18

def run
  remotes.delete(arguments[:remote_name]) do |el|
    raise ThreeScaleToolbox::Error, "could not remove remote '#{el}'"
  end
end