Class: Commands::Info
- Inherits:
-
Object
- Object
- Commands::Info
- Defined in:
- lib/rails/commands/plugin.rb
Instance Method Summary collapse
-
#initialize(base_command) ⇒ Info
constructor
A new instance of Info.
- #options ⇒ Object
- #parse!(args) ⇒ Object
Constructor Details
#initialize(base_command) ⇒ Info
Returns a new instance of Info.
457 458 459 |
# File 'lib/rails/commands/plugin.rb', line 457 def initialize(base_command) @base_command = base_command end |
Instance Method Details
#options ⇒ Object
461 462 463 464 465 466 467 |
# File 'lib/rails/commands/plugin.rb', line 461 def OptionParser.new do |o| o.set_summary_indent(' ') o. = "Usage: #{@base_command.script_name} info name [name]..." o.define_head "Shows plugin info at {url}/about.yml." end end |