summaryrefslogtreecommitdiff
path: root/lib/rdoc/rdoc.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-08 09:07:31 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-08 09:07:31 +0000
commite539dc6080b4b1338968650c2b8ff645b72b11bf (patch)
treeb969c97c53b99dc68885d2d45187b01e197b2bf6 /lib/rdoc/rdoc.rb
parentcc22700b900d37ffd452b0139749c3f024b9c380 (diff)
Replace ri with Ryan Davis' cached ri
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14950 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/rdoc.rb')
-rw-r--r--lib/rdoc/rdoc.rb16
1 files changed, 2 insertions, 14 deletions
diff --git a/lib/rdoc/rdoc.rb b/lib/rdoc/rdoc.rb
index b1359511bf..57f8fe08d9 100644
--- a/lib/rdoc/rdoc.rb
+++ b/lib/rdoc/rdoc.rb
@@ -1,3 +1,5 @@
+require 'rdoc'
+
require 'rdoc/parsers/parse_rb.rb'
require 'rdoc/parsers/parse_c.rb'
require 'rdoc/parsers/parse_f95.rb'
@@ -11,23 +13,9 @@ require 'find'
require 'fileutils'
require 'time'
-##
-# :include: README
-
module RDoc
##
- # RDoc version you are using
-
- VERSION = "2.0.0"
-
- ##
- # Name of the dotfile that contains the description of files to be processed
- # in the current directory
-
- DOT_DOC_FILENAME = ".document"
-
- ##
# Simple stats collector
class Stats