diff options
| author | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-08-13 17:52:52 +0000 |
|---|---|---|
| committer | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-08-13 17:52:52 +0000 |
| commit | fb4e92de929d3a11b81fdd879a2292f5ad2f25f0 (patch) | |
| tree | 1075c7a450c79e971f9e218332fc5c45794c7cc1 | |
| parent | 63c5c7aef6b4eee1ead962a74200656985941550 (diff) | |
| download | ruby-fb4e92de929d3a11b81fdd879a2292f5ad2f25f0.tar.gz ruby-fb4e92de929d3a11b81fdd879a2292f5ad2f25f0.tar.xz ruby-fb4e92de929d3a11b81fdd879a2292f5ad2f25f0.zip | |
Add "usage" interface
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6768 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | MANIFEST | 1 | ||||
| -rw-r--r-- | lib/rdoc/markup/simple_markup/to_flow.rb | 2 |
3 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Sat Aug 14 02:48:16 2004 Dave Thomas <dave@pragprog.com> + + * lib/rdoc/usage.rb: Added. Allows command line programs + to report usage using their initial RDoc comment. + Fri Aug 13 13:23:17 2004 GOTOU Yuuzou <gotoyuzo@notwork.org> * lib/webrick/httputils.rb (WEBrick::HTTPUtils.parse_range_header): @@ -273,6 +273,7 @@ lib/rdoc/ri/ri_util.rb lib/rdoc/ri/ri_writer.rb lib/rdoc/template.rb lib/rdoc/tokenstream.rb +lib/rdoc/usage.rb lib/readbytes.rb lib/resolv-replace.rb lib/resolv.rb diff --git a/lib/rdoc/markup/simple_markup/to_flow.rb b/lib/rdoc/markup/simple_markup/to_flow.rb index d5f6732d5..ce366d2df 100644 --- a/lib/rdoc/markup/simple_markup/to_flow.rb +++ b/lib/rdoc/markup/simple_markup/to_flow.rb @@ -1,6 +1,6 @@ require 'rdoc/markup/simple_markup/fragments' require 'rdoc/markup/simple_markup/inline' - +require 'CGI' module SM |
