summaryrefslogtreecommitdiff
path: root/doc/tutorial/short_names.rb
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tutorial/short_names.rb')
-rw-r--r--doc/tutorial/short_names.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/doc/tutorial/short_names.rb b/doc/tutorial/short_names.rb
deleted file mode 100644
index 6581dfe19a..0000000000
--- a/doc/tutorial/short_names.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-require 'optparse'
-parser = OptionParser.new
-parser.on('-x') do |value|
- p ['x', value]
-end
-parser.on('-1', '-%') do |value|
- p ['-1 or -%', value]
-end
-parser.parse!