2008-01-06 20:36:33 -05:00
|
|
|
require 'cgi'
|
2008-01-12 22:02:49 -05:00
|
|
|
require 'rdoc'
|
2008-01-06 20:36:33 -05:00
|
|
|
require 'rdoc/options'
|
2008-01-13 22:34:05 -05:00
|
|
|
require 'rdoc/markup'
|
2008-01-06 20:36:33 -05:00
|
|
|
require 'rdoc/template'
|
|
|
|
|
2008-01-12 22:13:37 -05:00
|
|
|
module RDoc::Generator
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2008-01-12 22:02:49 -05:00
|
|
|
##
|
|
|
|
# Name of sub-direcory that holds file descriptions
|
|
|
|
|
|
|
|
FILE_DIR = "files"
|
|
|
|
|
|
|
|
##
|
|
|
|
# Name of sub-direcory that holds class descriptions
|
|
|
|
|
|
|
|
CLASS_DIR = "classes"
|
|
|
|
|
|
|
|
##
|
|
|
|
# Name of the RDoc CSS file
|
|
|
|
|
|
|
|
CSS_NAME = "rdoc-style.css"
|
|
|
|
|
|
|
|
end
|
2008-01-06 20:36:33 -05:00
|
|
|
|