Sha256: 1aae9f85c0bb6d75ae288582133c44636298a1518e4b6ef46b2c37c431f5cf29

Contents?: true

Size: 731 Bytes

Versions: 4

Compression:

Stored size: 731 Bytes

Contents

require 'rubygems/command'
require 'rubygems/commands/query_command'

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

class Gem::Commands::ListCommand < Gem::Commands::QueryCommand

  def initialize
    super 'list', 'Display gems whose name starts with STRING'

    remove_option('--name-matches')
  end

  def arguments # :nodoc:
    "STRING        start of gem name to look for"
  end

  def defaults_str # :nodoc:
    "--local --no-details"
  end

  def usage # :nodoc:
    "#{program_name} [STRING]"
  end

  def execute
    string = get_one_optional_argument || ''
    options[:name] = /^#{string}/i
    super
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
shoesgem-0.1430.0 shoes/ruby/lib/rubygems/commands/list_command.rb
shoesgem-0.1429.0 shoes/ruby/lib/rubygems/commands/list_command.rb
shoesgem-0.1428.0 shoes/ruby/lib/rubygems/commands/list_command.rb
shoesgem-0.1426.0 shoes/ruby/lib/rubygems/commands/list_command.rb