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.
838 839 840 |
# File 'lib/commands/plugin.rb', line 838 def initialize(base_command) @base_command = base_command end |
Instance Method Details
#options ⇒ Object
842 843 844 845 846 847 848 |
# File 'lib/commands/plugin.rb', line 842 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
850 851 852 853 854 855 856 |
# File 'lib/commands/plugin.rb', line 850 def parse!(args) .parse!(args) root = @base_command.environment.root args.each do |name| ::Plugin.new(name).uninstall end end |