mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fcb0b1f503
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15033 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
36 lines
623 B
Ruby
36 lines
623 B
Ruby
##
|
|
# :include: rdoc/README
|
|
|
|
module RDoc
|
|
|
|
##
|
|
# Exception thrown by any rdoc error.
|
|
|
|
class Error < RuntimeError; end
|
|
|
|
RDocError = Error # :nodoc:
|
|
|
|
##
|
|
# 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"
|
|
|
|
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]
|
|
|
|
end
|
|
|