diff options
author | Burdette Lamar <[email protected]> | 2021-04-10 10:05:44 -0500 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-04-11 08:52:52 +0900 |
commit | ff0dac184902e42fac148940cd6c026679a0ee21 (patch) | |
tree | 2c4272338a5d5c96629c07180a54dc72807cba7b /doc/ruby/long_binary.rb | |
parent | c795f30ef00e5d428b4ffaf95e91d61f4a26a505 (diff) |
[ruby/optparse] Rdoc (#15)
* Resolve shared mixed_names.rb
* Add long option with negation
* Show --help for all examples
* Table of contents for tutorial
* Move argument converters to separate rdoc
* Add references to argument_converters.rdoc
* Tune up argument converters
* Change explicit links to auto-links
https://github.com/ruby/optparse/commit/c91ed8d33d
Diffstat (limited to 'doc/ruby/long_binary.rb')
-rw-r--r-- | doc/ruby/long_binary.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/doc/ruby/long_binary.rb b/doc/ruby/long_binary.rb deleted file mode 100644 index 8eccecaf3a..0000000000 --- a/doc/ruby/long_binary.rb +++ /dev/null @@ -1,6 +0,0 @@ -require 'optparse' -parser = OptionParser.new -parser.on('--[no-]binary') do |value| - p [value, value.class] -end -parser.parse! |