Class: Commands::Remove

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

Instance Method Summary collapse

Constructor Details

#initialize(base_command) ⇒ Remove

Returns a new instance of Remove.



431
432
433
# File 'lib/rails/commands/plugin.rb', line 431

def initialize(base_command)
  @base_command = base_command
end

Instance Method Details

#optionsObject



435
436
437
438
439
440
441
# File 'lib/rails/commands/plugin.rb', line 435

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



443
444
445
446
447
448
449
450
451
452
453
# File 'lib/rails/commands/plugin.rb', line 443

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