# File lib/commands/plugin.rb, line 878definitialize(base_command)
@base_command = base_commandend
Public Instance Methods
options()click to toggle source
# File lib/commands/plugin.rb, line 882defoptionsOptionParser.newdo|o|o.set_summary_indent(' ')
o.banner = "Usage: #{@base_command.script_name} info name [name]..."o.define_head"Shows plugin info at {url}/about.yml."endend
parse!(args)click to toggle source
# File lib/commands/plugin.rb, line 890defparse!(args)
options.parse!(args)
args.eachdo|name|puts::Plugin.find(name).infoputsendend