Class: Commands::Info
Instance Method Summary (collapse)
-
- (Info) initialize(base_command)
constructor
A new instance of Info.
- - (Object) options
- - (Object) parse!(args)
Constructor Details
- (Info) initialize(base_command)
A new instance of Info
452 453 454 |
# File 'railties/lib/rails/commands/plugin.rb', line 452 def initialize(base_command) @base_command = base_command end |
Instance Method Details
- (Object) options
456 457 458 459 460 461 462 |
# File 'railties/lib/rails/commands/plugin.rb', line 456 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 |
- (Object) parse!(args)
464 465 466 467 468 469 470 |
# File 'railties/lib/rails/commands/plugin.rb', line 464 def parse!(args) .parse!(args) args.each do |name| puts ::Plugin.find(name).info puts end end |