Class: Gem::OptionParser::CompletingHash
- Inherits:
- 
      Hash
      
        - Object
- Hash
- Gem::OptionParser::CompletingHash
 
- Includes:
- Completion
- Defined in:
- lib/rubygems/vendor/optparse/lib/optparse.rb
Overview
Hash with completion search feature. See Gem::OptionParser::Completion.
Instance Method Summary collapse
- 
  
    
      #match(key)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Completion for hash key. 
Methods included from Completion
#candidate, candidate, #complete, #convert, regexp
Instance Method Details
#match(key) ⇒ Object
Completion for hash key.
| 1000 1001 1002 1003 1004 1005 | # File 'lib/rubygems/vendor/optparse/lib/optparse.rb', line 1000 def match(key) *values = fetch(key) { raise AmbiguousArgument, catch(:ambiguous) {return complete(key)} } return key, *values end |