Skip to content

Commit b5db27f

Browse files
committed
Use Michael Granger's Darkfish template by default
1 parent d3a90ab commit b5db27f

34 files changed

+1873
-44
lines changed

History.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
=== ? / 200?-??-??
1+
=== 2.3.0 / 200?-??-??
22

33
* X Major Enhancements
44
* RDoc now automatically loads rdoc/discover.rb files from installed gems.
5+
* RDoc now uses Michael Granger's Darkfish generator by default.
56

67
* Y Minor Enhancements
78
* Added a space after the commas in ri class method lists. RubyForge

Manifest.txt

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
History.txt
22
Manifest.txt
33
README.txt
4-
Rakefile
54
RI.txt
5+
Rakefile
66
bin/rdoc
77
bin/ri
88
lib/rdoc.rb
@@ -12,6 +12,7 @@ lib/rdoc/dot.rb
1212
lib/rdoc/generator.rb
1313
lib/rdoc/generator/chm.rb
1414
lib/rdoc/generator/chm/chm.rb
15+
lib/rdoc/generator/darkfish.rb
1516
lib/rdoc/generator/html.rb
1617
lib/rdoc/generator/html/common.rb
1718
lib/rdoc/generator/html/frameless.rb
@@ -21,6 +22,29 @@ lib/rdoc/generator/html/kilmer.rb
2122
lib/rdoc/generator/html/kilmerfactory.rb
2223
lib/rdoc/generator/html/one_page_html.rb
2324
lib/rdoc/generator/ri.rb
25+
lib/rdoc/generator/template/darkfish/classpage.rhtml
26+
lib/rdoc/generator/template/darkfish/filepage.rhtml
27+
lib/rdoc/generator/template/darkfish/images/brick.png
28+
lib/rdoc/generator/template/darkfish/images/brick_link.png
29+
lib/rdoc/generator/template/darkfish/images/bullet_black.png
30+
lib/rdoc/generator/template/darkfish/images/date.png
31+
lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif
32+
lib/rdoc/generator/template/darkfish/images/macFFBgHack.png
33+
lib/rdoc/generator/template/darkfish/images/package.png
34+
lib/rdoc/generator/template/darkfish/images/page_green.png
35+
lib/rdoc/generator/template/darkfish/images/page_white_width.png
36+
lib/rdoc/generator/template/darkfish/images/plugin.png
37+
lib/rdoc/generator/template/darkfish/images/ruby.png
38+
lib/rdoc/generator/template/darkfish/images/tag_green.png
39+
lib/rdoc/generator/template/darkfish/images/wrench.png
40+
lib/rdoc/generator/template/darkfish/images/wrench_orange.png
41+
lib/rdoc/generator/template/darkfish/images/zoom.png
42+
lib/rdoc/generator/template/darkfish/index.rhtml
43+
lib/rdoc/generator/template/darkfish/js/darkfish.js
44+
lib/rdoc/generator/template/darkfish/js/jquery.js
45+
lib/rdoc/generator/template/darkfish/js/quicksearch.js
46+
lib/rdoc/generator/template/darkfish/js/thickbox-compressed.js
47+
lib/rdoc/generator/template/darkfish/rdoc.css
2448
lib/rdoc/generator/texinfo.rb
2549
lib/rdoc/generator/texinfo/class.texinfo.erb
2650
lib/rdoc/generator/texinfo/file.texinfo.erb
@@ -66,6 +90,7 @@ lib/rdoc/template.rb
6690
lib/rdoc/tokenstream.rb
6791
test/binary.dat
6892
test/rdoc_markup_to_html_crossref_reference.rb
93+
test/test_attribute_manager.rb
6994
test/test_rdoc_info_formatting.rb
7095
test/test_rdoc_info_sections.rb
7196
test/test_rdoc_markup.rb

lib/rdoc.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ class Error < RuntimeError; end
372372
##
373373
# RDoc version you are using
374374

375-
VERSION = "2.2.2"
375+
VERSION = "2.3.0"
376376

377377
##
378378
# Name of the dotfile that contains the description of files to be processed

lib/rdoc/generator/chm.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
class RDoc::Generator::CHM < RDoc::Generator::HTML
44

5+
RDoc::RDoc.add_generator self
6+
57
HHC_PATH = "c:/Program Files/HTML Help Workshop/hhc.exe"
68

79
##

0 commit comments

Comments
 (0)