2008-01-07 01:56:46 -05:00
|
|
|
require 'optparse'
|
2003-12-16 00:44:25 -05:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
require 'rdoc/ri/paths'
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
##
|
|
|
|
# RDoc::Options handles the parsing and storage of options
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
class RDoc::Options
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
##
|
2010-12-19 22:22:49 -05:00
|
|
|
# The deprecated options.
|
|
|
|
|
|
|
|
DEPRECATED = {
|
|
|
|
'--accessor' => 'support discontinued',
|
|
|
|
'--diagram' => 'support discontinued',
|
|
|
|
'--help-output' => 'support discontinued',
|
|
|
|
'--image-format' => 'was an option for --diagram',
|
|
|
|
'--inline-source' => 'source code is now always inlined',
|
|
|
|
'--merge' => 'ri now always merges class information',
|
|
|
|
'--one-file' => 'support discontinued',
|
|
|
|
'--op-name' => 'support discontinued',
|
|
|
|
'--opname' => 'support discontinued',
|
|
|
|
'--promiscuous' => 'files always only document their content',
|
|
|
|
'--ri-system' => 'Ruby installers use other techniques',
|
|
|
|
}
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
##
|
|
|
|
# Template option validator for OptionParser
|
|
|
|
|
|
|
|
Template = nil
|
|
|
|
|
|
|
|
##
|
|
|
|
# Character-set for HTML output. #encoding is preferred over #charset
|
|
|
|
|
|
|
|
attr_accessor :charset
|
|
|
|
|
|
|
|
##
|
|
|
|
# If true, RDoc will not write any files.
|
|
|
|
|
|
|
|
attr_accessor :dry_run
|
|
|
|
|
|
|
|
##
|
|
|
|
# Encoding of output where. This is set via --encoding.
|
|
|
|
|
|
|
|
attr_accessor :encoding if Object.const_defined? :Encoding
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
##
|
|
|
|
# Files matching this pattern will be excluded
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
attr_accessor :exclude
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
##
|
|
|
|
# The list of files to be processed
|
|
|
|
|
2008-02-09 22:59:08 -05:00
|
|
|
attr_accessor :files
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
##
|
|
|
|
# Create the output even if the output directory does not look
|
|
|
|
# like an rdoc output directory
|
|
|
|
|
|
|
|
attr_accessor :force_output
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
##
|
|
|
|
# Scan newer sources than the flag file if true.
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
attr_accessor :force_update
|
|
|
|
|
|
|
|
##
|
|
|
|
# Formatter to mark up text with
|
|
|
|
|
|
|
|
attr_accessor :formatter
|
2008-01-07 01:56:46 -05:00
|
|
|
|
|
|
|
##
|
2011-02-01 19:32:30 -05:00
|
|
|
# Description of the output generator (set with the <tt>--fmt</tt> option)
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
attr_accessor :generator
|
|
|
|
|
2008-07-17 20:46:16 -04:00
|
|
|
##
|
2010-12-19 22:22:49 -05:00
|
|
|
# Loaded generator options. Used to prevent --help from loading the same
|
|
|
|
# options multiple times.
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
attr_accessor :generator_options
|
|
|
|
|
|
|
|
##
|
|
|
|
# Old rdoc behavior: hyperlink all words that match a method name,
|
|
|
|
# even if not preceded by '#' or '::'
|
|
|
|
|
|
|
|
attr_accessor :hyperlink_all
|
|
|
|
|
|
|
|
##
|
|
|
|
# Include line numbers in the source code
|
|
|
|
|
|
|
|
attr_accessor :line_numbers
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
##
|
|
|
|
# Name of the file, class or module to display in the initial index page (if
|
|
|
|
# not specified the first file we encounter is used)
|
|
|
|
|
|
|
|
attr_accessor :main_page
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
##
|
|
|
|
# If true, only report on undocumented files
|
|
|
|
|
|
|
|
attr_accessor :coverage_report
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
##
|
|
|
|
# The name of the output directory
|
|
|
|
|
|
|
|
attr_accessor :op_dir
|
|
|
|
|
|
|
|
##
|
2010-12-19 22:22:49 -05:00
|
|
|
# The OptionParser for this instance
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
attr_accessor :option_parser
|
2008-01-07 01:56:46 -05:00
|
|
|
|
|
|
|
##
|
2010-12-19 22:22:49 -05:00
|
|
|
# Is RDoc in pipe mode?
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
attr_accessor :pipe
|
2008-01-07 01:56:46 -05:00
|
|
|
|
|
|
|
##
|
2010-12-19 22:22:49 -05:00
|
|
|
# Array of directories to search for files to satisfy an :include:
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
attr_accessor :rdoc_include
|
2008-01-07 01:56:46 -05:00
|
|
|
|
|
|
|
##
|
|
|
|
# Include the '#' at the front of hyperlinked instance method names
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
attr_accessor :show_hash
|
2008-01-07 01:56:46 -05:00
|
|
|
|
|
|
|
##
|
|
|
|
# The number of columns in a tab
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
attr_accessor :tab_width
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
##
|
2010-04-01 03:45:16 -04:00
|
|
|
# Template to be used when generating output
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
attr_accessor :template
|
|
|
|
|
|
|
|
##
|
|
|
|
# Directory the template lives in
|
|
|
|
|
|
|
|
attr_accessor :template_dir
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
##
|
|
|
|
# Documentation title
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
attr_accessor :title
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2011-02-01 19:32:30 -05:00
|
|
|
##
|
|
|
|
# Should RDoc update the timestamps in the output dir?
|
|
|
|
|
|
|
|
attr_accessor :update_output_dir
|
|
|
|
|
2008-07-21 14:35:14 -04:00
|
|
|
##
|
|
|
|
# Verbosity, zero means quiet
|
|
|
|
|
|
|
|
attr_accessor :verbosity
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
##
|
2003-12-01 02:12:49 -05:00
|
|
|
# URL of web cvs frontend
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
attr_accessor :webcvs
|
|
|
|
|
|
|
|
##
|
|
|
|
# Minimum visibility of a documented method. One of +:public+,
|
|
|
|
# +:protected+, +:private+. May be overridden on a per-method
|
|
|
|
# basis with the :doc: directive.
|
|
|
|
|
|
|
|
attr_accessor :visibility
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def initialize # :nodoc:
|
|
|
|
require 'rdoc/rdoc'
|
2010-12-19 22:22:49 -05:00
|
|
|
@dry_run = false
|
2008-01-07 01:56:46 -05:00
|
|
|
@exclude = []
|
2010-12-19 22:22:49 -05:00
|
|
|
@force_output = false
|
|
|
|
@force_update = true
|
|
|
|
@generator = nil
|
2010-04-01 03:45:16 -04:00
|
|
|
@generator_name = nil
|
2010-12-19 22:22:49 -05:00
|
|
|
@generator_options = []
|
|
|
|
@generators = RDoc::RDoc::GENERATORS
|
|
|
|
@hyperlink_all = false
|
|
|
|
@line_numbers = false
|
|
|
|
@main_page = nil
|
|
|
|
@coverage_report = false
|
|
|
|
@op_dir = nil
|
|
|
|
@pipe = false
|
2008-01-07 01:56:46 -05:00
|
|
|
@rdoc_include = []
|
|
|
|
@show_hash = false
|
2010-12-19 22:22:49 -05:00
|
|
|
@stylesheet_url = nil
|
2008-01-07 01:56:46 -05:00
|
|
|
@tab_width = 8
|
2010-12-19 22:22:49 -05:00
|
|
|
@template = nil
|
|
|
|
@template_dir = nil
|
|
|
|
@title = nil
|
2011-02-01 19:32:30 -05:00
|
|
|
@update_output_dir = true
|
2008-07-21 14:35:14 -04:00
|
|
|
@verbosity = 1
|
2010-12-19 22:22:49 -05:00
|
|
|
@visibility = :protected
|
2008-01-07 01:56:46 -05:00
|
|
|
@webcvs = nil
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
if Object.const_defined? :Encoding then
|
|
|
|
@encoding = Encoding.default_external
|
|
|
|
@charset = @encoding.to_s
|
|
|
|
else
|
|
|
|
@charset = 'UTF-8'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Check that the files on the command line exist
|
|
|
|
|
|
|
|
def check_files
|
|
|
|
@files.delete_if do |file|
|
|
|
|
if File.exist? file then
|
|
|
|
if File.readable? file then
|
|
|
|
false
|
|
|
|
else
|
|
|
|
warn "file '#{file}' not readable"
|
|
|
|
|
|
|
|
true
|
|
|
|
end
|
|
|
|
else
|
|
|
|
warn "file '#{file}' not found"
|
|
|
|
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Ensure only one generator is loaded
|
|
|
|
|
|
|
|
def check_generator
|
|
|
|
if @generator then
|
|
|
|
raise OptionParser::InvalidOption,
|
|
|
|
"generator already set to #{@generator_name}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Set the title, but only if not already set. Used to set the title
|
|
|
|
# from a source file, so that a title set from the command line
|
|
|
|
# will have the priority.
|
|
|
|
|
|
|
|
def default_title=(string)
|
|
|
|
@title ||= string
|
2008-01-07 01:56:46 -05:00
|
|
|
end
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2011-02-01 19:32:30 -05:00
|
|
|
##
|
|
|
|
# Completes any unfinished option setup business such as filtering for
|
|
|
|
# existent files, creating a regexp for #exclude and setting a default
|
|
|
|
# #template.
|
|
|
|
|
|
|
|
def finish
|
|
|
|
@op_dir ||= 'doc'
|
|
|
|
|
|
|
|
@rdoc_include << "." if @rdoc_include.empty?
|
|
|
|
|
2011-05-13 20:39:16 -04:00
|
|
|
if @exclude.nil? or Regexp === @exclude then
|
|
|
|
# done, #finish is being re-run
|
|
|
|
elsif @exclude.empty? then
|
2011-02-01 19:32:30 -05:00
|
|
|
@exclude = nil
|
|
|
|
else
|
|
|
|
@exclude = Regexp.new(@exclude.join("|"))
|
|
|
|
end
|
|
|
|
|
|
|
|
check_files
|
|
|
|
|
|
|
|
# If no template was specified, use the default template for the output
|
|
|
|
# formatter
|
|
|
|
|
|
|
|
unless @template then
|
|
|
|
@template = @generator_name
|
|
|
|
@template_dir = template_dir_for @template
|
|
|
|
end
|
|
|
|
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2010-12-28 17:08:56 -05:00
|
|
|
##
|
|
|
|
# Returns a properly-space list of generators and their descriptions.
|
|
|
|
|
|
|
|
def generator_descriptions
|
|
|
|
lengths = []
|
|
|
|
|
|
|
|
generators = RDoc::RDoc::GENERATORS.map do |name, generator|
|
|
|
|
lengths << name.length
|
|
|
|
|
|
|
|
description = generator::DESCRIPTION if
|
|
|
|
generator.const_defined? :DESCRIPTION
|
|
|
|
|
|
|
|
[name, description]
|
|
|
|
end
|
|
|
|
|
|
|
|
longest = lengths.max
|
|
|
|
|
|
|
|
generators.sort.map do |name, description|
|
|
|
|
if description then
|
|
|
|
" %-*s - %s" % [longest, name, description]
|
|
|
|
else
|
|
|
|
" #{name}"
|
|
|
|
end
|
|
|
|
end.join "\n"
|
|
|
|
end
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
##
|
2011-02-01 19:32:30 -05:00
|
|
|
# Parses command line options.
|
2008-01-07 01:56:46 -05:00
|
|
|
|
|
|
|
def parse(argv)
|
2010-04-01 03:45:16 -04:00
|
|
|
ignore_invalid = true
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
argv.insert(0, *ENV['RDOCOPT'].split) if ENV['RDOCOPT']
|
|
|
|
|
2008-04-04 17:16:19 -04:00
|
|
|
opts = OptionParser.new do |opt|
|
2010-12-19 22:22:49 -05:00
|
|
|
@option_parser = opt
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.program_name = File.basename $0
|
|
|
|
opt.version = RDoc::VERSION
|
2008-09-24 22:43:03 -04:00
|
|
|
opt.release = nil
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.summary_indent = ' ' * 4
|
|
|
|
opt.banner = <<-EOF
|
|
|
|
Usage: #{opt.program_name} [options] [names...]
|
|
|
|
|
|
|
|
Files are parsed, and the information they contain collected, before any
|
|
|
|
output is produced. This allows cross references between all files to be
|
|
|
|
resolved. If a name is a directory, it is traversed. If no names are
|
|
|
|
specified, all Ruby files in the current directory (and subdirectories) are
|
|
|
|
processed.
|
|
|
|
|
|
|
|
How RDoc generates output depends on the output formatter being used, and on
|
|
|
|
the options you give.
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
Options can be specified via the RDOCOPT environment variable, which
|
|
|
|
functions similar to the RUBYOPT environment variable for ruby.
|
|
|
|
|
|
|
|
$ export RDOCOPT="--show-hash"
|
|
|
|
|
|
|
|
will make rdoc show hashes in method links by default. Command-line options
|
|
|
|
always will override those in RDOCOPT.
|
|
|
|
|
2010-12-28 17:08:56 -05:00
|
|
|
Available formatters:
|
|
|
|
|
|
|
|
#{generator_descriptions}
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
RDoc understands the following file formats:
|
2008-01-07 01:56:46 -05:00
|
|
|
|
|
|
|
EOF
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
parsers = Hash.new { |h,parser| h[parser] = [] }
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
RDoc::Parser.parsers.each do |regexp, parser|
|
|
|
|
parsers[parser.name.sub('RDoc::Parser::', '')] << regexp.source
|
|
|
|
end
|
|
|
|
|
|
|
|
parsers.sort.each do |parser, regexp|
|
|
|
|
opt.banner << " - #{parser}: #{regexp.join ', '}\n"
|
2008-01-07 01:56:46 -05:00
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
opt.banner << "\n The following options are deprecated:\n\n"
|
|
|
|
|
|
|
|
name_length = DEPRECATED.keys.sort_by { |k| k.length }.last.length
|
|
|
|
|
|
|
|
DEPRECATED.sort_by { |k,| k }.each do |name, reason|
|
|
|
|
opt.banner << " %*1$2$s %3$s\n" % [-name_length, name, reason]
|
|
|
|
end
|
|
|
|
|
|
|
|
opt.accept Template do |template|
|
|
|
|
template_dir = template_dir_for template
|
|
|
|
|
|
|
|
unless template_dir then
|
|
|
|
warn "could not find template #{template}"
|
|
|
|
nil
|
|
|
|
else
|
|
|
|
[template, template_dir]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
opt.separator nil
|
2010-12-19 22:22:49 -05:00
|
|
|
opt.separator "Parsing options:"
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2006-09-17 10:46:13 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
if Object.const_defined? :Encoding then
|
|
|
|
opt.on("--encoding=ENCODING", "-e", Encoding.list.map { |e| e.name },
|
|
|
|
"Specifies the output encoding. All files",
|
|
|
|
"read will be converted to this encoding.",
|
|
|
|
"Preferred over --charset") do |value|
|
|
|
|
@encoding = Encoding.find value
|
|
|
|
@charset = @encoding.to_s # may not be valid value
|
|
|
|
end
|
|
|
|
|
|
|
|
opt.separator nil
|
|
|
|
end
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.on("--all", "-a",
|
2010-12-19 22:22:49 -05:00
|
|
|
"Synonym for --visibility=private.") do |value|
|
|
|
|
@visibility = :private
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.on("--exclude=PATTERN", "-x", Regexp,
|
|
|
|
"Do not process files or directories",
|
2008-09-24 22:43:03 -04:00
|
|
|
"matching PATTERN.") do |value|
|
2008-01-07 01:56:46 -05:00
|
|
|
@exclude << value
|
|
|
|
end
|
|
|
|
|
|
|
|
opt.separator nil
|
|
|
|
|
|
|
|
opt.on("--extension=NEW=OLD", "-E",
|
|
|
|
"Treat files ending with .new as if they",
|
|
|
|
"ended with .old. Using '-E cgi=rb' will",
|
|
|
|
"cause xxx.cgi to be parsed as a Ruby file.") do |value|
|
|
|
|
new, old = value.split(/=/, 2)
|
|
|
|
|
|
|
|
unless new and old then
|
|
|
|
raise OptionParser::InvalidArgument, "Invalid parameter to '-E'"
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
unless RDoc::Parser.alias_extension old, new then
|
2008-01-07 01:56:46 -05:00
|
|
|
raise OptionParser::InvalidArgument, "Unknown extension .#{old} to -E"
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-04-03 02:09:37 -04:00
|
|
|
opt.on("--[no-]force-update", "-U",
|
2008-01-07 01:56:46 -05:00
|
|
|
"Forces rdoc to scan all sources even if",
|
|
|
|
"newer than the flag file.") do |value|
|
|
|
|
@force_update = value
|
|
|
|
end
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
opt.on("--pipe",
|
|
|
|
"Convert RDoc on stdin to HTML") do
|
|
|
|
@pipe = true
|
2008-01-07 01:56:46 -05:00
|
|
|
end
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2010-12-19 22:22:49 -05:00
|
|
|
|
|
|
|
opt.on("--tab-width=WIDTH", "-w", OptionParser::DecimalInteger,
|
|
|
|
"Set the width of tab characters.") do |value|
|
|
|
|
@tab_width = value
|
|
|
|
end
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
opt.on("--visibility=VISIBILITY", "-V", RDoc::VISIBILITIES,
|
|
|
|
"Minimum visibility to document a method.",
|
|
|
|
"One of 'public', 'protected' (the default)",
|
|
|
|
"or 'private'. Can be abbreviated.") do |value|
|
|
|
|
@visibility = value
|
|
|
|
end
|
|
|
|
|
|
|
|
opt.separator nil
|
|
|
|
opt.separator "Common generator options:"
|
|
|
|
opt.separator nil
|
|
|
|
|
|
|
|
opt.on("--force-output", "-O",
|
|
|
|
"Forces rdoc to write the output files,",
|
|
|
|
"even if the output directory exists",
|
|
|
|
"and does not seem to have been created",
|
|
|
|
"by rdoc.") do |value|
|
|
|
|
@force_output = value
|
2008-01-07 01:56:46 -05:00
|
|
|
end
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
generator_text = @generators.keys.map { |name| " #{name}" }.sort
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
opt.on("-f", "--fmt=FORMAT", "--format=FORMAT", @generators.keys,
|
2010-04-01 03:45:16 -04:00
|
|
|
"Set the output formatter. One of:", *generator_text) do |value|
|
2010-12-19 22:22:49 -05:00
|
|
|
check_generator
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
@generator_name = value.downcase
|
|
|
|
setup_generator
|
2008-01-07 01:56:46 -05:00
|
|
|
end
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
opt.on("--include=DIRECTORIES", "-i", Array,
|
|
|
|
"Set (or add to) the list of directories to",
|
|
|
|
"be searched when satisfying :include:",
|
|
|
|
"requests. Can be used more than once.") do |value|
|
|
|
|
@rdoc_include.concat value.map { |dir| dir.strip }
|
2008-01-07 01:56:46 -05:00
|
|
|
end
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2011-02-01 19:32:30 -05:00
|
|
|
opt.on("--[no-]coverage-report=[LEVEL]", "--[no-]dcov", "-C", Integer,
|
2010-12-19 22:22:49 -05:00
|
|
|
"Prints a report on undocumented items.",
|
|
|
|
"Does not generate files.") do |value|
|
2011-02-01 19:32:30 -05:00
|
|
|
value = 0 if value.nil? # Integer converts -C to nil
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
@coverage_report = value
|
|
|
|
@force_update = true if value
|
2008-01-07 01:56:46 -05:00
|
|
|
end
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
opt.on("--output=DIR", "--op", "-o",
|
|
|
|
"Set the output directory.") do |value|
|
|
|
|
@op_dir = value
|
2008-01-07 01:56:46 -05:00
|
|
|
end
|
2006-09-17 10:46:13 -04:00
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
opt.on("-d",
|
|
|
|
"Deprecated --diagram option.",
|
|
|
|
"Prevents firing debug mode",
|
|
|
|
"with legacy invocation.") do |value|
|
|
|
|
end
|
|
|
|
|
|
|
|
opt.separator nil
|
|
|
|
opt.separator 'HTML generator options:'
|
|
|
|
opt.separator nil
|
|
|
|
|
|
|
|
opt.on("--charset=CHARSET", "-c",
|
|
|
|
"Specifies the output HTML character-set.",
|
|
|
|
"Use --encoding instead of --charset if",
|
|
|
|
"available.") do |value|
|
|
|
|
@charset = value
|
|
|
|
end
|
|
|
|
|
|
|
|
opt.separator nil
|
|
|
|
|
|
|
|
opt.on("--hyperlink-all", "-A",
|
|
|
|
"Generate hyperlinks for all words that",
|
|
|
|
"correspond to known methods, even if they",
|
|
|
|
"do not start with '#' or '::' (legacy",
|
|
|
|
"behavior).") do |value|
|
|
|
|
@hyperlink_all = value
|
|
|
|
end
|
|
|
|
|
|
|
|
opt.separator nil
|
|
|
|
|
|
|
|
opt.on("--main=NAME", "-m",
|
|
|
|
"NAME will be the initial page displayed.") do |value|
|
|
|
|
@main_page = value
|
|
|
|
end
|
|
|
|
|
|
|
|
opt.separator nil
|
|
|
|
|
|
|
|
opt.on("--[no-]line-numbers", "-N",
|
|
|
|
"Include line numbers in the source code.",
|
|
|
|
"By default, only the number of the first",
|
|
|
|
"line is displayed, in a leading comment.") do |value|
|
|
|
|
@line_numbers = value
|
|
|
|
end
|
|
|
|
|
|
|
|
opt.separator nil
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
opt.on("--show-hash", "-H",
|
|
|
|
"A name of the form #name in a comment is a",
|
|
|
|
"possible hyperlink to an instance method",
|
|
|
|
"name. When displayed, the '#' is removed",
|
|
|
|
"unless this option is specified.") do |value|
|
|
|
|
@show_hash = value
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
opt.on("--template=NAME", "-T", Template,
|
2010-04-01 03:45:16 -04:00
|
|
|
"Set the template used when generating",
|
2010-12-19 22:22:49 -05:00
|
|
|
"output. The default depends on the",
|
|
|
|
"formatter used.") do |(template, template_dir)|
|
|
|
|
@template = template
|
|
|
|
@template_dir = template_dir
|
2008-01-07 01:56:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
opt.separator nil
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
opt.on("--title=TITLE", "-t",
|
|
|
|
"Set TITLE as the title for HTML output.") do |value|
|
|
|
|
@title = value
|
2008-01-07 01:56:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
opt.separator nil
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
opt.on("--webcvs=URL", "-W",
|
|
|
|
"Specify a URL for linking to a web frontend",
|
|
|
|
"to CVS. If the URL contains a '\%s', the",
|
|
|
|
"name of the current file will be",
|
|
|
|
"substituted; if the URL doesn't contain a",
|
|
|
|
"'\%s', the filename will be appended to it.") do |value|
|
|
|
|
@webcvs = value
|
2008-07-21 14:35:14 -04:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
opt.separator nil
|
2010-12-19 22:22:49 -05:00
|
|
|
opt.separator "ri generator options:"
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
|
|
|
|
|
|
|
opt.on("--ri", "-r",
|
|
|
|
"Generate output for use by `ri`. The files",
|
|
|
|
"are stored in the '.rdoc' directory under",
|
|
|
|
"your home directory unless overridden by a",
|
|
|
|
"subsequent --op parameter, so no special",
|
|
|
|
"privileges are needed.") do |value|
|
2010-12-19 22:22:49 -05:00
|
|
|
check_generator
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
@generator_name = "ri"
|
2010-04-01 03:45:16 -04:00
|
|
|
@op_dir ||= RDoc::RI::Paths::HOMEDIR
|
2008-01-07 01:56:46 -05:00
|
|
|
setup_generator
|
|
|
|
end
|
|
|
|
|
|
|
|
opt.separator nil
|
|
|
|
|
|
|
|
opt.on("--ri-site", "-R",
|
|
|
|
"Generate output for use by `ri`. The files",
|
|
|
|
"are stored in a site-wide directory,",
|
|
|
|
"making them accessible to others, so",
|
|
|
|
"special privileges are needed.") do |value|
|
2010-12-19 22:22:49 -05:00
|
|
|
check_generator
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
@generator_name = "ri"
|
2008-01-08 05:18:41 -05:00
|
|
|
@op_dir = RDoc::RI::Paths::SITEDIR
|
2008-01-07 01:56:46 -05:00
|
|
|
setup_generator
|
|
|
|
end
|
|
|
|
|
|
|
|
opt.separator nil
|
2010-12-19 22:22:49 -05:00
|
|
|
opt.separator "Generic options:"
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
opt.on("--[no-]dry-run",
|
|
|
|
"Don't write any files") do |value|
|
|
|
|
@dry_run = value
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
opt.on("-D", "--[no-]debug",
|
|
|
|
"Displays lots on internal stuff.") do |value|
|
|
|
|
$DEBUG_RDOC = value
|
2008-01-07 01:56:46 -05:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
opt.on("--[no-]ignore-invalid",
|
2010-12-19 22:22:49 -05:00
|
|
|
"Ignore invalid options and continue",
|
|
|
|
"(default true).") do |value|
|
2010-04-01 03:45:16 -04:00
|
|
|
ignore_invalid = value
|
2008-01-07 01:56:46 -05:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
opt.on("--quiet", "-q",
|
|
|
|
"Don't show progress as we parse.") do |value|
|
|
|
|
@verbosity = 0
|
2008-01-07 01:56:46 -05:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
opt.on("--verbose", "-v",
|
2010-12-19 22:22:49 -05:00
|
|
|
"Display extra progress as RDoc parses") do |value|
|
2010-04-01 03:45:16 -04:00
|
|
|
@verbosity = 2
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
opt.on("--help",
|
|
|
|
"Display this help") do
|
|
|
|
RDoc::RDoc::GENERATORS.each_key do |generator|
|
|
|
|
setup_generator generator
|
|
|
|
end
|
|
|
|
|
|
|
|
puts opt.help
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
opt.separator nil
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
setup_generator 'darkfish' if
|
|
|
|
argv.grep(/\A(-f|--fmt|--format|-r|-R|--ri|--ri-site)\b/).empty?
|
|
|
|
|
|
|
|
deprecated = []
|
|
|
|
invalid = []
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
begin
|
|
|
|
opts.parse! argv
|
|
|
|
rescue OptionParser::InvalidArgument, OptionParser::InvalidOption => e
|
2010-12-19 22:22:49 -05:00
|
|
|
if DEPRECATED[e.args.first] then
|
|
|
|
deprecated << e.args.first
|
|
|
|
elsif %w[--format --ri -r --ri-site -R].include? e.args.first then
|
|
|
|
raise
|
2010-04-01 03:45:16 -04:00
|
|
|
else
|
2010-12-19 22:22:49 -05:00
|
|
|
invalid << e.args.join(' ')
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
2010-12-19 22:22:49 -05:00
|
|
|
|
|
|
|
retry
|
|
|
|
end
|
|
|
|
|
|
|
|
unless @generator then
|
|
|
|
@generator = RDoc::Generator::Darkfish
|
|
|
|
@generator_name = 'darkfish'
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2010-04-26 23:45:22 -04:00
|
|
|
if @pipe and not argv.empty? then
|
|
|
|
@pipe = false
|
2010-12-19 22:22:49 -05:00
|
|
|
invalid << '-p (with files)'
|
2010-04-26 23:45:22 -04:00
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
unless quiet then
|
|
|
|
deprecated.each do |opt|
|
|
|
|
$stderr.puts 'option ' << opt << ' is deprecated: ' << DEPRECATED[opt]
|
|
|
|
end
|
|
|
|
|
|
|
|
unless invalid.empty? then
|
|
|
|
invalid = "invalid options: #{invalid.join ', '}"
|
|
|
|
|
|
|
|
if ignore_invalid then
|
|
|
|
$stderr.puts invalid
|
|
|
|
$stderr.puts '(invalid options are ignored)'
|
|
|
|
else
|
|
|
|
$stderr.puts opts
|
|
|
|
$stderr.puts invalid
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
end
|
2010-04-20 23:10:03 -04:00
|
|
|
end
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
@files = argv.dup
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2011-02-01 19:32:30 -05:00
|
|
|
finish
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
|
|
|
|
2008-07-21 14:35:14 -04:00
|
|
|
##
|
|
|
|
# Don't display progress as we process the files
|
|
|
|
|
|
|
|
def quiet
|
|
|
|
@verbosity.zero?
|
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
##
|
|
|
|
# Set quietness to +bool+
|
|
|
|
|
|
|
|
def quiet= bool
|
2008-07-21 14:35:14 -04:00
|
|
|
@verbosity = bool ? 0 : 1
|
|
|
|
end
|
|
|
|
|
2008-01-07 01:56:46 -05:00
|
|
|
##
|
2010-12-19 22:22:49 -05:00
|
|
|
# Set up an output generator for the named +generator_name+.
|
|
|
|
#
|
|
|
|
# If the found generator responds to :setup_options it will be called with
|
|
|
|
# the options instance. This allows generators to add custom options or set
|
|
|
|
# default options.
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def setup_generator generator_name = @generator_name
|
|
|
|
@generator = @generators[generator_name]
|
2008-01-07 01:56:46 -05:00
|
|
|
|
|
|
|
unless @generator then
|
2010-12-19 22:22:49 -05:00
|
|
|
raise OptionParser::InvalidArgument,
|
|
|
|
"Invalid output formatter #{generator_name}"
|
2003-12-16 00:44:25 -05:00
|
|
|
end
|
2010-12-19 22:22:49 -05:00
|
|
|
|
|
|
|
return if @generator_options.include? @generator
|
|
|
|
|
|
|
|
@generator_name = generator_name
|
|
|
|
@generator_options << @generator
|
|
|
|
|
2011-02-01 19:32:30 -05:00
|
|
|
if @generator.respond_to? :setup_options then
|
|
|
|
@option_parser ||= OptionParser.new
|
2011-02-05 01:20:57 -05:00
|
|
|
@generator.setup_options self
|
2011-02-01 19:32:30 -05:00
|
|
|
end
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
2008-01-07 01:56:46 -05:00
|
|
|
|
|
|
|
##
|
2010-12-19 22:22:49 -05:00
|
|
|
# Finds the template dir for +template+
|
2008-01-07 01:56:46 -05:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def template_dir_for template
|
|
|
|
template_path = File.join 'rdoc', 'generator', 'template', template
|
|
|
|
|
|
|
|
$LOAD_PATH.map do |path|
|
|
|
|
File.join File.expand_path(path), template_path
|
|
|
|
end.find do |dir|
|
|
|
|
File.directory? dir
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2008-01-07 01:56:46 -05:00
|
|
|
|