mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
937b7ab8b5
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
25 lines
380 B
Ruby
25 lines
380 B
Ruby
require 'cgi'
|
|
require 'rdoc'
|
|
require 'rdoc/options'
|
|
require 'rdoc/markup/simple_markup'
|
|
require 'rdoc/template'
|
|
|
|
module RDoc::Generators
|
|
|
|
##
|
|
# 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
|
|
|