class Gem::Commands::ListCommand

Searches for gems starting with the supplied argument.

Public Class Methods

new() click to toggle source
Calls superclass method Gem::Command::new
# File rubygems/commands/list_command.rb, line 11
def initialize
  super 'list', 'Display local gems whose name matches REGEXP',
       :name => //, :domain => :local, :details => false, :versions => true,
       :installed => nil, :version => Gem::Requirement.default

  add_query_options
end