1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/lib/rdoc/generator.rb

26 lines
365 B
Ruby
Raw Normal View History

require 'cgi'
require 'rdoc'
require 'rdoc/options'
require 'rdoc/markup'
require 'rdoc/template'
module RDoc::Generator
##
# 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