Class: LibGems::Commands::SearchCommand
- Inherits:
 - 
      QueryCommand
      
        
- Object
 - LibGems::Command
 - QueryCommand
 - LibGems::Commands::SearchCommand
 
 
- Defined in:
 - lib/libgems/commands/search_command.rb
 
Instance Attribute Summary
Attributes inherited from LibGems::Command
#command, #defaults, #options, #program_name, #summary
Instance Method Summary collapse
- 
  
    
      #arguments  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
:nodoc:.
 - 
  
    
      #defaults_str  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
:nodoc:.
 - #execute ⇒ Object
 - 
  
    
      #initialize  ⇒ SearchCommand 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SearchCommand.
 - 
  
    
      #usage  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
:nodoc:.
 
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_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 LibGems::Command
add_common_option, #add_extra_args, #add_option, add_specific_extra_args, #begins?, build_args, build_args=, common_options, #description, extra_args, extra_args=, #get_all_gem_names, #get_one_gem_name, #get_one_optional_argument, #handle_options, #handles?, #invoke, #merge_options, #remove_option, #show_help, #show_lookup_failure, specific_extra_args, specific_extra_args_hash, #when_invoked
Methods included from UserInteraction
Methods included from DefaultUserInteraction
ui, #ui, ui=, #ui=, use_ui, #use_ui
Constructor Details
#initialize ⇒ SearchCommand
Returns a new instance of SearchCommand.
      6 7 8 9 10  | 
    
      # File 'lib/libgems/commands/search_command.rb', line 6 def initialize super 'search', 'Display all gems whose name contains STRING' remove_option '--name-matches' end  | 
  
Instance Method Details
#arguments ⇒ Object
:nodoc:
      12 13 14  | 
    
      # File 'lib/libgems/commands/search_command.rb', line 12 def arguments # :nodoc: "STRING fragment of gem name to search for" end  | 
  
#defaults_str ⇒ Object
:nodoc:
      16 17 18  | 
    
      # File 'lib/libgems/commands/search_command.rb', line 16 def defaults_str # :nodoc: "--local --no-details" end  | 
  
#execute ⇒ Object
      24 25 26 27 28  | 
    
      # File 'lib/libgems/commands/search_command.rb', line 24 def execute string = get_one_optional_argument [:name] = /#{string}/i super end  | 
  
#usage ⇒ Object
:nodoc:
      20 21 22  | 
    
      # File 'lib/libgems/commands/search_command.rb', line 20 def usage # :nodoc: "#{program_name} [STRING]" end  |