mirror of
https://github.com/ruby/ruby.git
synced 2026-08-21 03:34:31 +08:00
- Added example in "Argument Converters"; it doesn't seem right for a tutorial to have no example in one of its topics (and instead just linking elsewhere).
- Added section "Command-Line Abbreviations."
- Added section "Keyword Argument into," showing how to:
- Collect options.
- Check for missing options.
- Provide option defaults.
https://github.com/ruby/optparse/commit/39d39676c4
9 lines
308 B
Ruby
9 lines
308 B
Ruby
require 'optparse'
|
|
parser = OptionParser.new
|
|
parser.on('-x', '--xxx', 'Short and long, no argument')
|
|
parser.on('-yYYY', '--yyy', 'Short and long, required argument')
|
|
parser.on('-z [ZZZ]', '--zzz', 'Short and long, optional argument')
|
|
options = {yyy: 'AAA', zzz: 'BBB'}
|
|
parser.parse!(into: options)
|
|
p options
|