Class: OptionParser::CompletingHash

Inherits:
Hash show all
Includes:
Completion
Defined in:
lib/optparse.rb

Overview

Hash with completion search feature. See OptionParser::Completion.

Instance Method Summary collapse

Methods included from Completion

#candidate, candidate, #complete, #convert, regexp

Methods inherited from Hash

#pretty_print, #pretty_print_cycle

Instance Method Details

#match(key) ⇒ Object

Completion for hash key.



988
989
990
991
992
993
# File 'lib/optparse.rb', line 988

def match(key)
  *values = fetch(key) {
    raise AmbiguousArgument, catch(:ambiguous) {return complete(key)}
  }
  return key, *values
end