Class: Coherent::Commands::Remove
- Inherits:
-
Object
- Object
- Coherent::Commands::Remove
- Defined in:
- lib/plugin/commands/remove.rb
Instance Method Summary collapse
-
#initialize(base_command) ⇒ Remove
constructor
A new instance of Remove.
- #options ⇒ Object
- #parse!(args) ⇒ Object
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
#options ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/plugin/commands/remove.rb', line 10 def OptionParser.new do |o| o.set_summary_indent(' ') o. = "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) .parse!(args) root = @base_command.environment.root args.each do |name| Coherent::Plugin.new(name).uninstall end end |