Class: Commands::Remove
- Inherits:
-
Object
- Object
- Commands::Remove
- Defined in:
- lib/rails/commands/plugin.rb
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.
431 432 433 |
# File 'lib/rails/commands/plugin.rb', line 431 def initialize(base_command) @base_command = base_command end |
Instance Method Details
#options ⇒ Object
435 436 437 438 439 440 441 |
# File 'lib/rails/commands/plugin.rb', line 435 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 |