2008-01-08 04:07:31 -05:00
|
|
|
##
|
|
|
|
# :include: rdoc/README
|
|
|
|
|
|
|
|
module RDoc
|
|
|
|
|
2008-01-13 22:34:05 -05:00
|
|
|
##
|
|
|
|
# Exception thrown by any rdoc error.
|
|
|
|
|
|
|
|
class Error < RuntimeError; end
|
|
|
|
|
|
|
|
RDocError = Error # :nodoc:
|
|
|
|
|
2008-01-08 04:07:31 -05:00
|
|
|
##
|
|
|
|
# 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"
|
|
|
|
|
2008-01-13 22:34:05 -05:00
|
|
|
GENERAL_MODIFIERS = %w[nodoc].freeze
|
|
|
|
|
|
|
|
CLASS_MODIFIERS = GENERAL_MODIFIERS
|
|
|
|
|
|
|
|
ATTR_MODIFIERS = GENERAL_MODIFIERS
|
|
|
|
|
|
|
|
CONSTANT_MODIFIERS = GENERAL_MODIFIERS
|
|
|
|
|
|
|
|
METHOD_MODIFIERS = GENERAL_MODIFIERS +
|
|
|
|
%w[arg args yield yields notnew not-new not_new doc]
|
|
|
|
|
2008-01-08 04:07:31 -05:00
|
|
|
end
|
|
|
|
|