Class: Commands::Remove

Inherits:
Object
  • Object
show all
Defined in:
lib/commands/plugin/commands.rb

Instance Method Summary collapse

Constructor Details

#initialize(base_command) ⇒ Remove

Returns a new instance of Remove.



496
497
498
# File 'lib/commands/plugin/commands.rb', line 496

def initialize(base_command)
  @base_command = base_command
end

Instance Method Details

#optionsObject



500
501
502
503
504
505
506
# File 'lib/commands/plugin/commands.rb', line 500

def options
  OptionParser.new do |o|
    o.set_summary_indent('  ')
    o.banner =    "Usage: #{@base_command.script_name} remove name [name]..."
    o.define_head "Remove plugins."
  end
end

#parse!(args) ⇒ Object



508
509
510
511
512
513
514
# File 'lib/commands/plugin/commands.rb', line 508

def parse!(args)
  options.parse!(args)
  root = @base_command.environment.root
  args.each do |name|
    ::Plugin.new(name).uninstall
  end
end