Class: Gem::Commands::SearchCommand

Inherits:
ListCommand show all
Defined in:
lib/rubygems/commands/search_command.rb

Instance Attribute Summary

Attributes inherited from Gem::Command

#command, #defaults, #options, #program_name, #summary

Instance Method Summary collapse

Methods inherited from ListCommand

#arguments, #execute, #usage

Methods inherited from QueryCommand

#execute

Methods included from VersionOption

#add_platform_option, #add_prerelease_option, #add_version_option

Methods included from LocalRemoteOptions

#accept_uri_http, #add_bulk_threshold_option, #add_clear_sources_option, #add_local_remote_options, #add_proxy_option, #add_source_option, #add_update_sources_option, #both?, #local?, #remote?

Methods included from Text

#format_text, #levenshtein_distance

Methods inherited from Gem::Command

add_common_option, #add_extra_args, #add_option, add_specific_extra_args, #arguments, #begins?, build_args, build_args=, common_options, #description, #execute, extra_args, extra_args=, #get_all_gem_names, #get_all_gem_names_and_versions, #get_one_gem_name, #get_one_optional_argument, #handle_options, #handles?, #invoke, #invoke_with_build_args, #merge_options, #remove_option, #show_help, #show_lookup_failure, specific_extra_args, specific_extra_args_hash, #usage, #when_invoked

Methods included from UserInteraction

#alert, #alert_error, #alert_warning, #ask, #ask_for_password, #ask_yes_no, #choose_from_list, #say, #terminate_interaction

Methods included from DefaultUserInteraction

ui, #ui, ui=, #ui=, use_ui, #use_ui

Constructor Details

#initializeSearchCommand

Returns a new instance of SearchCommand.



6
7
8
9
10
# File 'lib/rubygems/commands/search_command.rb', line 6

def initialize
  super 'search', 'Display all gems whose name contains STRING'

  @defaults[:domain] = :remote
end

Instance Method Details

#defaults_strObject

:nodoc:



12
13
14
# File 'lib/rubygems/commands/search_command.rb', line 12

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