Class: Coherent::Commands::Remove

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

Instance Method Summary collapse

Constructor Details

#initialize(base_command) ⇒ Remove

Returns a new instance of Remove.



6
7
8
# File 'lib/plugin/commands/remove.rb', line 6

def initialize(base_command)
  @base_command = base_command
end

Instance Method Details

#optionsObject



10
11
12
13
14
15
16
# File 'lib/plugin/commands/remove.rb', line 10

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



18
19
20
21
22
23
24
# File 'lib/plugin/commands/remove.rb', line 18

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