method
new
v1_9_3_392 -
Show latest stable
-
0 notes -
Class: Options
- 1_8_6_287
- 1_8_7_72
- 1_8_7_330
- 1_9_1_378 (0)
- 1_9_2_180 (0)
- 1_9_3_125 (0)
- 1_9_3_392 (0)
- 2_1_10 (0)
- 2_2_9 (0)
- 2_4_6 (0)
- 2_5_5 (0)
- 2_6_3 (0)
- What's this?
new()
public
Hide source
# File lib/rdoc/options.rb, line 173 def initialize # :nodoc: require 'rdoc/rdoc' @dry_run = false @exclude = [] @force_output = false @force_update = true @generator = nil @generator_name = nil @generator_options = [] @generators = RDoc::RDoc::GENERATORS @hyperlink_all = false @line_numbers = false @main_page = nil @coverage_report = false @op_dir = nil @pipe = false @rdoc_include = [] @show_hash = false @stylesheet_url = nil @tab_width = 8 @template = nil @template_dir = nil @title = nil @update_output_dir = true @verbosity = 1 @visibility = :protected @webcvs = nil if Object.const_defined? :Encoding then @encoding = Encoding.default_external @charset = @encoding.to_s else @charset = 'UTF-8' end end