Skip to content

Commit ce79711

Browse files
authored
Enable warn_missing_rdoc_ref by default (#1275)
This feature has been tested in RDoc and IRB, as well as my local Ruby project for a while. It's been finding and now preventing dead rdoc-ref links effectively. So I think it's a great feature to be enabled by default.
1 parent b795077 commit ce79711

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/rdoc/options.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def init_ivars # :nodoc:
410410
@update_output_dir = true
411411
@verbosity = 1
412412
@visibility = :protected
413-
@warn_missing_rdoc_ref = false
413+
@warn_missing_rdoc_ref = true
414414
@webcvs = nil
415415
@write_options = false
416416
@encoding = Encoding::UTF_8

test/rdoc/test_rdoc_options.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def test_to_yaml
8282
'template_stylesheets' => [],
8383
'title' => nil,
8484
'visibility' => :protected,
85-
'warn_missing_rdoc_ref' => false,
85+
'warn_missing_rdoc_ref' => true,
8686
'webcvs' => nil,
8787
'skip_tests' => true,
8888
'apply_default_exclude' => true,

0 commit comments

Comments
 (0)