Parent

Class/Module Index [+]

Quicksearch

Commands::Remove

Public Class Methods

new(base_command) click to toggle source
# File lib/commands/plugin.rb, line 856
def initialize(base_command)
  @base_command = base_command
end

Public Instance Methods

options() click to toggle source
# File lib/commands/plugin.rb, line 860
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) click to toggle source
# File lib/commands/plugin.rb, line 868
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.