File tree Expand file tree Collapse file tree 5 files changed +12
-3
lines changed Expand file tree Collapse file tree 5 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1313 * Removed support for --accessor, use regular documentation or
1414 the method directive instead. See RDoc::Parser::Ruby
1515 * Removed --ri-system as it is unused by Ruby's makefiles
16- * Add method list to index.html
16+ * Added method list to index.html
1717
1818* N Bug Fixes
1919 * nodoc'd classes no longer appear in the index. Bug #23751 by Clifford
2020 Heath.
2121 * Fix 1.9 compatibility issues. Bug #23815 by paddor.
2222 * Darkfish now respects --charset
23+ * RDoc no longer attempts to be lazy when building HTML. This is a
24+ workaround. Bug #23893 by Stefano Crocco.
2325 * RDoc doesn't crash with def (blah).foo() end
2426 * RDoc doesn't crash with #define functions
2527
Original file line number Diff line number Diff line change @@ -98,16 +98,21 @@ test/binary.dat
9898test/test.ja.rdoc
9999test/test.ja.txt
100100test/test_attribute_manager.rb
101+ test/test_rdoc_any_method.rb
101102test/test_rdoc_code_object.rb
103+ test/test_rdoc_constant.rb
102104test/test_rdoc_context.rb
105+ test/test_rdoc_include.rb
103106test/test_rdoc_markup.rb
104107test/test_rdoc_markup_attribute_manager.rb
105108test/test_rdoc_markup_to_html.rb
106109test/test_rdoc_markup_to_html_crossref.rb
110+ test/test_rdoc_normal_module.rb
107111test/test_rdoc_parser.rb
108112test/test_rdoc_parser_c.rb
109113test/test_rdoc_parser_perl.rb
110114test/test_rdoc_parser_ruby.rb
115+ test/test_rdoc_require.rb
111116test/test_rdoc_ri_attribute_formatter.rb
112117test/test_rdoc_ri_default_display.rb
113118test/test_rdoc_ri_driver.rb
Original file line number Diff line number Diff line change 11require 'hoe'
22
3+ $rdoc_rakefile = true
4+
35$:. unshift 'lib'
46require 'rdoc'
57
Original file line number Diff line number Diff line change 22# vim: noet ts=2 sts=8 sw=2
33
44require 'rubygems'
5- gem 'rdoc' , '>= 2.3'
5+ gem 'rdoc' , '>= 2.4' if defined? $rdoc_rakefile
66
77require 'pp'
88require 'pathname'
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ def initialize # :nodoc:
141141 @image_format = 'png'
142142 @tab_width = 8
143143 @include_line_numbers = false
144- @force_update = false
144+ @force_update = true
145145 @verbosity = 1
146146
147147 @webcvs = nil
You can’t perform that action at this time.
0 commit comments