method
default_options
v1_9_1_378 -
Show latest stable
- Class:
RDoc::RI::Driver
default_options()public
No documentation available.
# File lib/rdoc/ri/driver.rb, line 80
def self.default_options
options = {}
options[:use_stdout] = !$stdout.tty?
options[:width] = 72
options[:formatter] = RDoc::RI::Formatter.for 'plain'
options[:interactive] = false
options[:use_cache] = true
# By default all standard paths are used.
options[:use_system] = true
options[:use_site] = true
options[:use_home] = true
options[:use_gems] = true
options[:extra_doc_dirs] = []
return options
end