Class: Commands::Remove

Inherits:
Object show all
Defined in:
railties/lib/rails/commands/plugin.rb

Instance Method Summary collapse

Constructor Details

#initialize(base_command) ⇒ Remove

Returns a new instance of Remove.



426
427
428
# File 'railties/lib/rails/commands/plugin.rb', line 426

def initialize(base_command)
  @base_command = base_command
end

Instance Method Details

#optionsObject



430
431
432
433
434
435
436
# File 'railties/lib/rails/commands/plugin.rb', line 430

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) ⇒ Object



438
439
440
441
442
443
444
445
446
447
448
# File 'railties/lib/rails/commands/plugin.rb', line 438

def parse!(args)
  options.parse!(args)
  if args.blank?
    puts options
    exit 1
  end
  root = @base_command.environment.root
  args.each do |name|
    ::Plugin.new(name).uninstall
  end
end