An alternate to Gem::Commands::QueryCommand that searches for gems starting with the the supplied argument.
# File lib/rubygems/commands/list_command.rb, line 10 def initialize(name = 'list', summary = 'Display gems whose name starts with STRING') super name, summary remove_option('--name-matches') end
# File lib/rubygems/commands/list_command.rb, line 29 def execute name = get_one_optional_argument || '' options[:name] = /^#{name}/ super end