Class: Commands::Info
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.
832 833 834 |
# File 'lib/commands/plugin.rb', line 832 def initialize(base_command) @base_command = base_command end |
Instance Method Details
#options ⇒ Object
836 837 838 839 840 841 842 |
# File 'lib/commands/plugin.rb', line 836 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 |