There's no documentation for this item.
Source Code
# File commands/plugin.rb, line 470 def parse!(args=ARGV) general, sub = split_args(args) options.parse!(general) command = general.shift if command =~ /^(list|discover|install|source|unsource|sources|remove|update|info)$/ command = Commands.const_get(command.capitalize).new(self) command.parse!(sub) else puts "Unknown command: #{command}" puts options exit 1 end end
<code/>and<pre/>for code samples.