summaryrefslogtreecommitdiff
path: root/doc/optparse/ruby/argument_abbreviation.rb
diff options
context:
space:
mode:
Diffstat (limited to 'doc/optparse/ruby/argument_abbreviation.rb')
-rw-r--r--doc/optparse/ruby/argument_abbreviation.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/optparse/ruby/argument_abbreviation.rb b/doc/optparse/ruby/argument_abbreviation.rb
new file mode 100644
index 0000000000..49007ebe69
--- /dev/null
+++ b/doc/optparse/ruby/argument_abbreviation.rb
@@ -0,0 +1,9 @@
+require 'optparse'
+parser = OptionParser.new
+parser.on('-x', '--xxx=VALUE', %w[ABC def], 'Argument abbreviations') do |value|
+ p ['--xxx', value]
+end
+parser.on('-y', '--yyy=VALUE', {"abc"=>"XYZ", def: "FOO"}, 'Argument abbreviations') do |value|
+ p ['--yyy', value]
+end
+parser.parse!