Object
# File lib/commands/plugin/commands.rb, line 498 def initialize(base_command) @base_command = base_command end
# File lib/commands/plugin/commands.rb, line 502 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
# File lib/commands/plugin/commands.rb, line 510 def parse!(args) options.parse!(args) root = @base_command.environment.root args.each do |name| ::Plugin.new(name).uninstall end end
[Validate]
Generated with the Darkfish Rdoc Generator 2.