diff options
author | Burdette Lamar <[email protected]> | 2021-04-22 07:27:06 -0500 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2021-07-28 20:13:39 +0900 |
commit | 27679b349e453b5ab1ce31472389bcb7ce550e4e () | |
tree | 50893f3ef721e47402f7265c5be7f45d3f00e3e5 /lib | |
parent | a10db32003320a81c32a3733d9d97ba6e3614efa (diff) |
[ruby/optparse] More on tutorial (https://.com/ruby/optparse/pull/23)
- Removed a largish block of repeated text. - Added sections "Top List and Base List" and "Methods for Defining Options" (on, define, etc.). - Linked from class OptionParser doc to the tutorial. https://.com/ruby/optparse/commit/7f3195b9db
-rw-r--r-- | lib/optparse.rb | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -48,6 +48,10 @@ # # == OptionParser # # === Introduction # # OptionParser is a class for command-line option analysis. It is much more @@ -415,8 +419,10 @@ # # === Further documentation # -# The above examples should be enough to learn how to use this class. If you -# have any questions, file a ticket at http://bugs.ruby-lang.org. # class OptionParser OptionParser::Version = "0.1.1" |