Class: Commands::Remove
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.
810 811 812 |
# File 'lib/commands/plugin.rb', line 810 def initialize(base_command) @base_command = base_command end |
Instance Method Details
#options ⇒ Object
814 815 816 817 818 819 820 |
# File 'lib/commands/plugin.rb', line 814 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
822 823 824 825 826 827 828 |
# File 'lib/commands/plugin.rb', line 822 def parse!(args) .parse!(args) root = @base_command.environment.root args.each do |name| ::Plugin.new(name).uninstall end end |