class RDoc::Options

def init_ivars # :nodoc:

:nodoc:
def init_ivars # :nodoc:
  @dry_run = false
  @exclude = []
  @files = nil
  @force_output = false
  @force_update = true
  @generator = nil
  @generator_name = nil
  @generator_options = []
  @generators = RDoc::RDoc::GENERATORS
  @hyperlink_all = false
  @line_numbers = false
  @locale = nil
  @locale_name = nil
  @locale_dir = 'locale'
  @main_page = nil
  @markup = 'rdoc'
  @coverage_report = false
  @op_dir = nil
  @page_dir = nil
  @pipe = false
  @output_decoration = true
  @rdoc_include = []
  @root = Pathname(Dir.pwd)
  @show_hash = false
  @static_path = []
  @stylesheet_url = nil # TODO remove in RDoc 4
  @tab_width = 8
  @template = nil
  @template_dir = nil
  @template_stylesheets = []
  @title = nil
  @update_output_dir = true
  @verbosity = 1
  @visibility = :protected
  @webcvs = nil
  @write_options = false
  if Object.const_defined? :Encoding then
    @encoding = Encoding::UTF_8
    @charset = @encoding.name
  else
    @encoding = nil
    @charset = 'UTF-8'
  end
end