Method: CLAide::ARGV#options
- Defined in:
- lib/claide/argv.rb
#options ⇒ Hash
Returns A hash that consists of the remaining flags and options and their values.
80 81 82 83 84 85 86 |
# File 'lib/claide/argv.rb', line 80 def = {} @entries.each do |type, (key, value)| [key] = value unless type == :arg end end |