Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • rubygems/commands/list_command.rb

Class/Module Index [+]

Quicksearch

Gem::Commands::ListCommand

An alternate to Gem::Commands::QueryCommand that searches for gems starting with the the supplied argument.

Public Class Methods

new() click to toggle source
 
               # File rubygems/commands/list_command.rb, line 10
def initialize
  super 'list', 'Display gems whose name starts with STRING'

  remove_option('--name-matches')
end
            

Public Instance Methods

execute() click to toggle source
 
               # File rubygems/commands/list_command.rb, line 28
def execute
  string = get_one_optional_argument || ''
  options[:name] = /^#{string}/i
  super
end