rdoc 2.2.1 → 2.3.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rdoc might be problematic. Click here for more details.

Files changed (95) hide show
  1. data.tar.gz.sig +2 -0
  2. data/.document +4 -0
  3. data/History.txt +35 -0
  4. data/Manifest.txt +36 -15
  5. data/README.txt +11 -27
  6. data/Rakefile +3 -0
  7. data/lib/rdoc.rb +1 -1
  8. data/lib/rdoc/cache.rb +32 -0
  9. data/lib/rdoc/code_objects.rb +121 -59
  10. data/lib/rdoc/generator.rb +196 -133
  11. data/lib/rdoc/generator/darkfish.rb +471 -0
  12. data/lib/rdoc/generator/html.rb +71 -60
  13. data/lib/rdoc/generator/html/html.rb +115 -115
  14. data/lib/rdoc/generator/html/one_page_html.rb +56 -56
  15. data/lib/rdoc/generator/ri.rb +2 -0
  16. data/lib/rdoc/generator/template/darkfish/.document +0 -0
  17. data/lib/rdoc/generator/template/darkfish/classpage.rhtml +302 -0
  18. data/lib/rdoc/generator/template/darkfish/filepage.rhtml +114 -0
  19. data/lib/rdoc/generator/template/darkfish/images/brick.png +0 -0
  20. data/lib/rdoc/generator/template/darkfish/images/brick_link.png +0 -0
  21. data/lib/rdoc/generator/template/darkfish/images/bug.png +0 -0
  22. data/lib/rdoc/generator/template/darkfish/images/bullet_black.png +0 -0
  23. data/lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png +0 -0
  24. data/lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png +0 -0
  25. data/lib/rdoc/generator/template/darkfish/images/date.png +0 -0
  26. data/lib/rdoc/generator/template/darkfish/images/find.png +0 -0
  27. data/lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif +0 -0
  28. data/lib/rdoc/generator/template/darkfish/images/macFFBgHack.png +0 -0
  29. data/lib/rdoc/generator/template/darkfish/images/package.png +0 -0
  30. data/lib/rdoc/generator/template/darkfish/images/page_green.png +0 -0
  31. data/lib/rdoc/generator/template/darkfish/images/page_white_text.png +0 -0
  32. data/lib/rdoc/generator/template/darkfish/images/page_white_width.png +0 -0
  33. data/lib/rdoc/generator/template/darkfish/images/plugin.png +0 -0
  34. data/lib/rdoc/generator/template/darkfish/images/ruby.png +0 -0
  35. data/lib/rdoc/generator/template/darkfish/images/tag_green.png +0 -0
  36. data/lib/rdoc/generator/template/darkfish/images/wrench.png +0 -0
  37. data/lib/rdoc/generator/template/darkfish/images/wrench_orange.png +0 -0
  38. data/lib/rdoc/generator/template/darkfish/images/zoom.png +0 -0
  39. data/lib/rdoc/generator/template/darkfish/index.rhtml +57 -0
  40. data/lib/rdoc/generator/template/darkfish/js/darkfish.js +116 -0
  41. data/lib/rdoc/generator/template/darkfish/js/jquery.js +32 -0
  42. data/lib/rdoc/generator/template/darkfish/js/quicksearch.js +114 -0
  43. data/lib/rdoc/generator/template/darkfish/js/thickbox-compressed.js +10 -0
  44. data/lib/rdoc/generator/template/darkfish/rdoc.css +696 -0
  45. data/lib/rdoc/generator/xml.rb +19 -12
  46. data/lib/rdoc/generator/xml/rdf.rb +50 -50
  47. data/lib/rdoc/generator/xml/xml.rb +58 -58
  48. data/lib/rdoc/known_classes.rb +0 -1
  49. data/lib/rdoc/markup/preprocess.rb +4 -3
  50. data/lib/rdoc/markup/to_html.rb +4 -1
  51. data/lib/rdoc/markup/to_html_crossref.rb +28 -31
  52. data/lib/rdoc/options.rb +25 -20
  53. data/lib/rdoc/parser.rb +10 -2
  54. data/lib/rdoc/parser/c.rb +38 -29
  55. data/lib/rdoc/parser/f95.rb +32 -32
  56. data/lib/rdoc/parser/ruby.rb +5 -2
  57. data/lib/rdoc/parser/simple.rb +1 -0
  58. data/lib/rdoc/rdoc.rb +99 -47
  59. data/lib/rdoc/ri/cache.rb +6 -6
  60. data/lib/rdoc/ri/display.rb +22 -75
  61. data/lib/rdoc/ri/driver.rb +237 -78
  62. data/lib/rdoc/stats.rb +91 -28
  63. data/lib/rdoc/template.rb +6 -2
  64. data/test/test.ja.rdoc +8 -0
  65. data/test/test.ja.txt +8 -0
  66. data/test/test_attribute_manager.rb +9 -6
  67. data/test/test_rdoc_markup.rb +4 -2
  68. data/test/test_rdoc_markup_attribute_manager.rb +13 -3
  69. data/test/test_rdoc_markup_to_html.rb +18 -2
  70. data/test/test_rdoc_markup_to_html_crossref.rb +186 -249
  71. data/test/test_rdoc_parser.rb +17 -1
  72. data/test/test_rdoc_parser_c.rb +65 -10
  73. data/test/test_rdoc_parser_perl.rb +4 -2
  74. data/test/test_rdoc_parser_ruby.rb +6 -4
  75. data/test/test_rdoc_ri_attribute_formatter.rb +4 -2
  76. data/test/test_rdoc_ri_default_display.rb +8 -4
  77. data/test/test_rdoc_ri_driver.rb +4 -2
  78. data/test/test_rdoc_ri_formatter.rb +6 -4
  79. data/test/test_rdoc_ri_overstrike_formatter.rb +4 -2
  80. metadata +84 -33
  81. metadata.gz.sig +0 -0
  82. data/lib/rdoc/generator/chm.rb +0 -113
  83. data/lib/rdoc/generator/chm/chm.rb +0 -100
  84. data/lib/rdoc/generator/html/frameless.rb +0 -92
  85. data/lib/rdoc/generator/html/hefss.rb +0 -150
  86. data/lib/rdoc/generator/html/kilmer.rb +0 -151
  87. data/lib/rdoc/generator/html/kilmerfactory.rb +0 -427
  88. data/lib/rdoc/generator/texinfo.rb +0 -81
  89. data/lib/rdoc/generator/texinfo/class.texinfo.erb +0 -44
  90. data/lib/rdoc/generator/texinfo/file.texinfo.erb +0 -6
  91. data/lib/rdoc/generator/texinfo/method.texinfo.erb +0 -6
  92. data/lib/rdoc/generator/texinfo/texinfo.erb +0 -28
  93. data/test/rdoc_markup_to_html_crossref_reference.rb +0 -31
  94. data/test/test_rdoc_info_formatting.rb +0 -175
  95. data/test/test_rdoc_info_sections.rb +0 -136
@@ -1,13 +1,29 @@
1
+ require 'rubygems'
2
+ require 'minitest/unit'
1
3
  require 'rdoc/parser'
4
+ require 'rdoc/parser/ruby'
2
5
 
3
- class TestRDocParser < Test::Unit::TestCase
6
+ class TestRDocParser < MiniTest::Unit::TestCase
4
7
  def test_can_parse
5
8
  assert_equal(RDoc::Parser.can_parse(__FILE__), RDoc::Parser::Ruby)
6
9
 
7
10
  readme_file_name = File.join(File.dirname(__FILE__), "..", "README.txt")
11
+
12
+ unless File.exist? readme_file_name then # HACK for tests in trunk :/
13
+ readme_file_name = File.join File.dirname(__FILE__), '..', '..', 'README'
14
+ end
15
+
8
16
  assert_equal(RDoc::Parser.can_parse(readme_file_name), RDoc::Parser::Simple)
9
17
 
10
18
  binary_file_name = File.join(File.dirname(__FILE__), "binary.dat")
11
19
  assert_equal(RDoc::Parser.can_parse(binary_file_name), nil)
20
+
21
+ jtest_file_name = File.join(File.dirname(__FILE__), "test.ja.txt")
22
+ assert_equal(RDoc::Parser::Simple, RDoc::Parser.can_parse(jtest_file_name))
23
+
24
+ jtest_rdoc_file_name = File.join(File.dirname(__FILE__), "test.ja.rdoc")
25
+ assert_equal(RDoc::Parser::Simple, RDoc::Parser.can_parse(jtest_rdoc_file_name))
12
26
  end
13
27
  end
28
+
29
+ MiniTest::Unit.autorun
@@ -1,6 +1,7 @@
1
1
  require 'stringio'
2
2
  require 'tempfile'
3
- require 'test/unit'
3
+ require 'rubygems'
4
+ require 'minitest/unit'
4
5
  require 'rdoc/options'
5
6
  require 'rdoc/parser/c'
6
7
 
@@ -10,7 +11,7 @@ class RDoc::Parser::C
10
11
  public :do_classes, :do_constants
11
12
  end
12
13
 
13
- class TestRDocParserC < Test::Unit::TestCase
14
+ class TestRDocParserC < MiniTest::Unit::TestCase
14
15
 
15
16
  def setup
16
17
  @tempfile = Tempfile.new self.class.name
@@ -20,6 +21,9 @@ class TestRDocParserC < Test::Unit::TestCase
20
21
  @fn = filename
21
22
  @options = RDoc::Options.new
22
23
  @stats = RDoc::Stats.new 0
24
+
25
+ RDoc::Parser::C.reset
26
+ RDoc::TopLevel.reset
23
27
  end
24
28
 
25
29
  def teardown
@@ -136,12 +140,12 @@ void Init_foo(){
136
140
  }
137
141
  EOF
138
142
 
139
- parser = util_parser content
143
+ @parser = util_parser content
140
144
 
141
- parser.do_classes
142
- parser.do_constants
145
+ @parser.do_classes
146
+ @parser.do_constants
143
147
 
144
- klass = parser.classes['cFoo']
148
+ klass = @parser.classes['cFoo']
145
149
  assert klass
146
150
 
147
151
  constants = klass.constants
@@ -222,7 +226,7 @@ VALUE foo = rb_define_class("Foo", rb_cObject);
222
226
 
223
227
  klass = util_get_class content, 'foo'
224
228
 
225
- assert_equal " \n a comment for class Foo\n ", klass.comment
229
+ assert_equal " \n a comment for class Foo\n \n", klass.comment
226
230
  end
227
231
 
228
232
  def test_find_class_comment_define_class_Init_Foo
@@ -244,6 +248,56 @@ Init_Foo(void) {
244
248
  assert_equal " \n a comment for class Foo on Init\n \n", klass.comment
245
249
  end
246
250
 
251
+ def test_find_class_comment_define_class_bogus_comment
252
+ content = <<-EOF
253
+ /*
254
+ * a comment for other_function
255
+ */
256
+ void
257
+ other_function() {
258
+ }
259
+
260
+ void
261
+ Init_Foo(void) {
262
+ VALUE foo = rb_define_class("Foo", rb_cObject);
263
+ }
264
+ EOF
265
+
266
+ klass = util_get_class content, 'foo'
267
+
268
+ assert_equal '', klass.comment
269
+ end
270
+
271
+ def test_find_body
272
+ content = <<-EOF
273
+ /*
274
+ * a comment for other_function
275
+ */
276
+ VALUE
277
+ other_function() {
278
+ }
279
+
280
+ void
281
+ Init_Foo(void) {
282
+ VALUE foo = rb_define_class("Foo", rb_cObject);
283
+
284
+ rb_define_method(foo, "my_method", other_function, 0);
285
+ }
286
+ EOF
287
+
288
+ klass = util_get_class content, 'foo'
289
+ other_function = klass.method_list.first
290
+
291
+ assert_equal 'my_method', other_function.name
292
+ assert_equal " \n a comment for other_function\n \n",
293
+ other_function.comment
294
+ assert_equal '()', other_function.params
295
+
296
+ code = other_function.token_stream.first.text
297
+
298
+ assert_equal "VALUE\nother_function() ", code
299
+ end
300
+
247
301
  def test_define_method
248
302
  content = <<-EOF
249
303
  /*Method Comment! */
@@ -272,9 +326,9 @@ Init_IO(void) {
272
326
  end
273
327
 
274
328
  def util_get_class(content, name)
275
- parser = util_parser content
276
- parser.scan
277
- parser.classes[name]
329
+ @parser = util_parser content
330
+ @parser.scan
331
+ @parser.classes[name]
278
332
  end
279
333
 
280
334
  def util_parser(content)
@@ -283,3 +337,4 @@ Init_IO(void) {
283
337
 
284
338
  end
285
339
 
340
+ MiniTest::Unit.autorun
@@ -1,10 +1,11 @@
1
1
  require 'stringio'
2
2
  require 'tempfile'
3
- require 'test/unit'
3
+ require 'rubygems'
4
+ require 'minitest/unit'
4
5
  require 'rdoc/options'
5
6
  require 'rdoc/parser/perl'
6
7
 
7
- class TestRdocParserPerlPOD < Test::Unit::TestCase
8
+ class TestRdocParserPerlPOD < MiniTest::Unit::TestCase
8
9
 
9
10
  def setup
10
11
  @tempfile = Tempfile.new self.class.name
@@ -70,3 +71,4 @@ This just contains plain old documentation
70
71
 
71
72
  end
72
73
 
74
+ MiniTest::Unit.autorun
@@ -1,12 +1,13 @@
1
1
  require 'stringio'
2
2
  require 'tempfile'
3
- require 'test/unit'
3
+ require 'rubygems'
4
+ require 'minitest/unit'
4
5
 
5
6
  require 'rdoc/options'
6
7
  require 'rdoc/parser/ruby'
7
8
  require 'rdoc/stats'
8
9
 
9
- class TestRDocParserRuby < Test::Unit::TestCase
10
+ class TestRDocParserRuby < MiniTest::Unit::TestCase
10
11
 
11
12
  def setup
12
13
  @tempfile = Tempfile.new self.class.name
@@ -23,8 +24,8 @@ class TestRDocParserRuby < Test::Unit::TestCase
23
24
  end
24
25
 
25
26
  def teardown
26
- @tempfile.unlink
27
- @tempfile2.unlink
27
+ @tempfile.close
28
+ @tempfile2.close
28
29
  end
29
30
 
30
31
  def test_look_for_directives_in_commented
@@ -747,3 +748,4 @@ EOF
747
748
 
748
749
  end
749
750
 
751
+ MiniTest::Unit.autorun
@@ -1,8 +1,9 @@
1
1
  require 'stringio'
2
- require 'test/unit'
2
+ require 'rubygems'
3
+ require 'minitest/unit'
3
4
  require 'rdoc/ri/formatter'
4
5
 
5
- class TestRDocRIAttributeFormatter < Test::Unit::TestCase
6
+ class TestRDocRIAttributeFormatter < MiniTest::Unit::TestCase
6
7
 
7
8
  def setup
8
9
  @output = StringIO.new
@@ -40,3 +41,4 @@ class TestRDocRIAttributeFormatter < Test::Unit::TestCase
40
41
 
41
42
  end
42
43
 
44
+ MiniTest::Unit.autorun
@@ -1,10 +1,11 @@
1
1
  require 'stringio'
2
- require 'test/unit'
2
+ require 'rubygems'
3
+ require 'minitest/unit'
3
4
  require 'rdoc/ri/formatter'
4
5
  require 'rdoc/ri/display'
5
6
  require 'rdoc/ri/driver'
6
7
 
7
- class TestRDocRiDefaultDisplay < Test::Unit::TestCase
8
+ class TestRDocRiDefaultDisplay < MiniTest::Unit::TestCase
8
9
 
9
10
  def setup
10
11
  @output = StringIO.new
@@ -52,11 +53,12 @@ class TestRDocRiDefaultDisplay < Test::Unit::TestCase
52
53
  'includes' => [],
53
54
  'instance_methods' => [
54
55
  { 'name' => 'instance_method' },
56
+ { 'name' => 'instance_method2' },
55
57
  ],
56
58
  'instance_method_extensions' => [
57
59
  { 'name' => 'instance_method_extension' },
58
60
  ],
59
- 'superclass_string' => 'Object'
61
+ 'superclass' => 'Object'
60
62
 
61
63
  @dd.display_class_info klass
62
64
 
@@ -100,7 +102,7 @@ Class method extensions:
100
102
  Instance methods:
101
103
  -----------------
102
104
 
103
- instance_method
105
+ instance_method, instance_method2
104
106
 
105
107
 
106
108
  Instance method extensions:
@@ -295,3 +297,5 @@ install an additional package, or ask the packager to enable ri generation.
295
297
  end
296
298
 
297
299
  end
300
+
301
+ MiniTest::Unit.autorun
@@ -1,8 +1,9 @@
1
- require 'test/unit'
1
+ require 'rubygems'
2
+ require 'minitest/unit'
2
3
  require 'tmpdir'
3
4
  require 'rdoc/ri/driver'
4
5
 
5
- class TestRDocRIDriver < Test::Unit::TestCase
6
+ class TestRDocRIDriver < MiniTest::Unit::TestCase
6
7
 
7
8
  def setup
8
9
  @tmpdir = File.join Dir.tmpdir, "test_rdoc_ri_driver_#{$$}"
@@ -90,3 +91,4 @@ class TestRDocRIDriver < Test::Unit::TestCase
90
91
 
91
92
  end
92
93
 
94
+ MiniTest::Unit.autorun
@@ -1,9 +1,10 @@
1
1
  require 'stringio'
2
- require 'test/unit'
2
+ require 'rubygems'
3
+ require 'minitest/unit'
3
4
  require 'rdoc/ri/formatter'
4
5
  require 'rdoc/markup/to_flow'
5
6
 
6
- class TestRDocRIFormatter < Test::Unit::TestCase
7
+ class TestRDocRIFormatter < MiniTest::Unit::TestCase
7
8
 
8
9
  def setup
9
10
  @output = StringIO.new
@@ -97,7 +98,7 @@ class TestRDocRIFormatter < Test::Unit::TestCase
97
98
  end
98
99
 
99
100
  def test_display_flow_item_unknown
100
- e = assert_raise RDoc::Error do
101
+ e = assert_raises RDoc::Error do
101
102
  @f.display_flow_item Object.new
102
103
  end
103
104
 
@@ -189,7 +190,7 @@ class TestRDocRIFormatter < Test::Unit::TestCase
189
190
  list = RDoc::Markup::Flow::LIST.new :UNKNOWN
190
191
  list << RDoc::Markup::Flow::LI.new(nil, 'a b c')
191
192
 
192
- e = assert_raise ArgumentError do
193
+ e = assert_raises ArgumentError do
193
194
  @f.display_list list
194
195
  end
195
196
 
@@ -316,3 +317,4 @@ class TestRDocRIFormatter < Test::Unit::TestCase
316
317
 
317
318
  end
318
319
 
320
+ MiniTest::Unit.autorun
@@ -1,10 +1,11 @@
1
1
  require 'stringio'
2
- require 'test/unit'
2
+ require 'rubygems'
3
+ require 'minitest/unit'
3
4
  require 'rdoc/ri/formatter'
4
5
  require 'rdoc/markup/fragments'
5
6
  require 'rdoc/markup/to_flow'
6
7
 
7
- class TestRDocRIOverstrikeFormatter < Test::Unit::TestCase
8
+ class TestRDocRIOverstrikeFormatter < MiniTest::Unit::TestCase
8
9
 
9
10
  def setup
10
11
  @output = StringIO.new
@@ -67,3 +68,4 @@ class TestRDocRIOverstrikeFormatter < Test::Unit::TestCase
67
68
 
68
69
  end
69
70
 
71
+ MiniTest::Unit.autorun
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Hodel
@@ -10,11 +10,42 @@ authors:
10
10
  - Tony Strauss
11
11
  autorequire:
12
12
  bindir: bin
13
- cert_chain: []
13
+ cert_chain:
14
+ - |
15
+ -----BEGIN CERTIFICATE-----
16
+ MIIDNjCCAh6gAwIBAgIBADANBgkqhkiG9w0BAQUFADBBMRAwDgYDVQQDDAdkcmJy
17
+ YWluMRgwFgYKCZImiZPyLGQBGRYIc2VnbWVudDcxEzARBgoJkiaJk/IsZAEZFgNu
18
+ ZXQwHhcNMDcxMjIxMDIwNDE0WhcNMDgxMjIwMDIwNDE0WjBBMRAwDgYDVQQDDAdk
19
+ cmJyYWluMRgwFgYKCZImiZPyLGQBGRYIc2VnbWVudDcxEzARBgoJkiaJk/IsZAEZ
20
+ FgNuZXQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCbbgLrGLGIDE76
21
+ LV/cvxdEzCuYuS3oG9PrSZnuDweySUfdp/so0cDq+j8bqy6OzZSw07gdjwFMSd6J
22
+ U5ddZCVywn5nnAQ+Ui7jMW54CYt5/H6f2US6U0hQOjJR6cpfiymgxGdfyTiVcvTm
23
+ Gj/okWrQl0NjYOYBpDi+9PPmaH2RmLJu0dB/NylsDnW5j6yN1BEI8MfJRR+HRKZY
24
+ mUtgzBwF1V4KIZQ8EuL6I/nHVu07i6IkrpAgxpXUfdJQJi0oZAqXurAV3yTxkFwd
25
+ g62YrrW26mDe+pZBzR6bpLE+PmXCzz7UxUq3AE0gPHbiMXie3EFE0oxnsU3lIduh
26
+ sCANiQ8BAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
27
+ BBS5k4Z75VSpdM0AclG2UvzFA/VW5DANBgkqhkiG9w0BAQUFAAOCAQEAHagT4lfX
28
+ kP/hDaiwGct7XPuVGbrOsKRVD59FF5kETBxEc9UQ1clKWngf8JoVuEoKD774dW19
29
+ bU0GOVWO+J6FMmT/Cp7nuFJ79egMf/gy4gfUfQMuvfcr6DvZUPIs9P/TlK59iMYF
30
+ DIOQ3DxdF3rMzztNUCizN4taVscEsjCcgW6WkUJnGdqlu3OHWpQxZBJkBTjPCoc6
31
+ UW6on70SFPmAy/5Cq0OJNGEWBfgD9q7rrs/X8GGwUWqXb85RXnUVi/P8Up75E0ag
32
+ 14jEc90kN+C7oI/AGCBN0j6JnEtYIEJZibjjDJTSMWlUKKkj30kq7hlUC2CepJ4v
33
+ x52qPcexcYZR7w==
34
+ -----END CERTIFICATE-----
14
35
 
15
- date: 2008-09-24 00:00:00 -04:00
36
+ date: 2009-01-28 00:00:00 -08:00
16
37
  default_executable:
17
38
  dependencies:
39
+ - !ruby/object:Gem::Dependency
40
+ name: minitest
41
+ type: :development
42
+ version_requirement:
43
+ version_requirements: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: "1.3"
48
+ version:
18
49
  - !ruby/object:Gem::Dependency
19
50
  name: hoe
20
51
  type: :development
@@ -23,9 +54,9 @@ dependencies:
23
54
  requirements:
24
55
  - - ">="
25
56
  - !ruby/object:Gem::Version
26
- version: 1.7.0
57
+ version: 1.8.2
27
58
  version:
28
- description: RDoc is an application that produces documentation for one or more Ruby source files. RDoc includes the +rdoc+ and +ri+ tools for generating and displaying online documentation. At this point in time, RDoc 2.x is a work in progress and may incur further API changes beyond what has been made to the RDoc 1.0.1. Command-line tools are largely unaffected, but internal APIs may shift rapidly. See RDoc for a description of RDoc's markup and basic use.
59
+ description: RDoc is an application that produces documentation for one or more Ruby source files. RDoc includes the +rdoc+ and +ri+ tools for generating and displaying online documentation. At this point in time, RDoc 2.x is a work in progress and may incur further API changes beyond what has been made to RDoc 1.0.1. Command-line tools are largely unaffected, but internal APIs may shift rapidly. See RDoc for a description of RDoc's markup and basic use.
29
60
  email:
30
61
  - drbrain@segment7.net
31
62
  - ""
@@ -41,35 +72,57 @@ extra_rdoc_files:
41
72
  - Manifest.txt
42
73
  - README.txt
43
74
  - RI.txt
75
+ - test/test.ja.txt
44
76
  files:
77
+ - .document
45
78
  - History.txt
46
79
  - Manifest.txt
47
80
  - README.txt
48
- - Rakefile
49
81
  - RI.txt
82
+ - Rakefile
50
83
  - bin/rdoc
51
84
  - bin/ri
52
85
  - lib/rdoc.rb
86
+ - lib/rdoc/cache.rb
53
87
  - lib/rdoc/code_objects.rb
54
88
  - lib/rdoc/diagram.rb
55
89
  - lib/rdoc/dot.rb
56
90
  - lib/rdoc/generator.rb
57
- - lib/rdoc/generator/chm.rb
58
- - lib/rdoc/generator/chm/chm.rb
91
+ - lib/rdoc/generator/darkfish.rb
59
92
  - lib/rdoc/generator/html.rb
60
93
  - lib/rdoc/generator/html/common.rb
61
- - lib/rdoc/generator/html/frameless.rb
62
- - lib/rdoc/generator/html/hefss.rb
63
94
  - lib/rdoc/generator/html/html.rb
64
- - lib/rdoc/generator/html/kilmer.rb
65
- - lib/rdoc/generator/html/kilmerfactory.rb
66
95
  - lib/rdoc/generator/html/one_page_html.rb
67
96
  - lib/rdoc/generator/ri.rb
68
- - lib/rdoc/generator/texinfo.rb
69
- - lib/rdoc/generator/texinfo/class.texinfo.erb
70
- - lib/rdoc/generator/texinfo/file.texinfo.erb
71
- - lib/rdoc/generator/texinfo/method.texinfo.erb
72
- - lib/rdoc/generator/texinfo/texinfo.erb
97
+ - lib/rdoc/generator/template/darkfish/.document
98
+ - lib/rdoc/generator/template/darkfish/classpage.rhtml
99
+ - lib/rdoc/generator/template/darkfish/filepage.rhtml
100
+ - lib/rdoc/generator/template/darkfish/images/brick.png
101
+ - lib/rdoc/generator/template/darkfish/images/brick_link.png
102
+ - lib/rdoc/generator/template/darkfish/images/bug.png
103
+ - lib/rdoc/generator/template/darkfish/images/bullet_black.png
104
+ - lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png
105
+ - lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png
106
+ - lib/rdoc/generator/template/darkfish/images/date.png
107
+ - lib/rdoc/generator/template/darkfish/images/find.png
108
+ - lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif
109
+ - lib/rdoc/generator/template/darkfish/images/macFFBgHack.png
110
+ - lib/rdoc/generator/template/darkfish/images/package.png
111
+ - lib/rdoc/generator/template/darkfish/images/page_green.png
112
+ - lib/rdoc/generator/template/darkfish/images/page_white_text.png
113
+ - lib/rdoc/generator/template/darkfish/images/page_white_width.png
114
+ - lib/rdoc/generator/template/darkfish/images/plugin.png
115
+ - lib/rdoc/generator/template/darkfish/images/ruby.png
116
+ - lib/rdoc/generator/template/darkfish/images/tag_green.png
117
+ - lib/rdoc/generator/template/darkfish/images/wrench.png
118
+ - lib/rdoc/generator/template/darkfish/images/wrench_orange.png
119
+ - lib/rdoc/generator/template/darkfish/images/zoom.png
120
+ - lib/rdoc/generator/template/darkfish/index.rhtml
121
+ - lib/rdoc/generator/template/darkfish/js/darkfish.js
122
+ - lib/rdoc/generator/template/darkfish/js/jquery.js
123
+ - lib/rdoc/generator/template/darkfish/js/quicksearch.js
124
+ - lib/rdoc/generator/template/darkfish/js/thickbox-compressed.js
125
+ - lib/rdoc/generator/template/darkfish/rdoc.css
73
126
  - lib/rdoc/generator/xml.rb
74
127
  - lib/rdoc/generator/xml/rdf.rb
75
128
  - lib/rdoc/generator/xml/xml.rb
@@ -109,9 +162,9 @@ files:
109
162
  - lib/rdoc/template.rb
110
163
  - lib/rdoc/tokenstream.rb
111
164
  - test/binary.dat
112
- - test/rdoc_markup_to_html_crossref_reference.rb
113
- - test/test_rdoc_info_formatting.rb
114
- - test/test_rdoc_info_sections.rb
165
+ - test/test.ja.rdoc
166
+ - test/test.ja.txt
167
+ - test/test_attribute_manager.rb
115
168
  - test/test_rdoc_markup.rb
116
169
  - test/test_rdoc_markup_attribute_manager.rb
117
170
  - test/test_rdoc_markup_to_html.rb
@@ -143,29 +196,27 @@ required_rubygems_version: !ruby/object:Gem::Requirement
143
196
  requirements:
144
197
  - - ">="
145
198
  - !ruby/object:Gem::Version
146
- version: "0"
199
+ version: "1.3"
147
200
  version:
148
201
  requirements: []
149
202
 
150
203
  rubyforge_project: rdoc
151
- rubygems_version: 1.2.0
204
+ rubygems_version: 1.3.1.1939
152
205
  signing_key:
153
206
  specification_version: 2
154
207
  summary: RDoc is an application that produces documentation for one or more Ruby source files
155
208
  test_files:
156
- - test/test_rdoc_parser.rb
209
+ - test/test_attribute_manager.rb
210
+ - test/test_rdoc_markup.rb
211
+ - test/test_rdoc_markup_attribute_manager.rb
157
212
  - test/test_rdoc_markup_to_html.rb
158
- - test/test_rdoc_ri_default_display.rb
159
213
  - test/test_rdoc_markup_to_html_crossref.rb
160
- - test/test_rdoc_info_sections.rb
161
- - test/test_rdoc_ri_formatter.rb
214
+ - test/test_rdoc_parser.rb
215
+ - test/test_rdoc_parser_c.rb
162
216
  - test/test_rdoc_parser_perl.rb
163
- - test/test_rdoc_ri_driver.rb
164
- - test/test_attribute_manager.rb
165
217
  - test/test_rdoc_parser_ruby.rb
166
- - test/test_rdoc_ri_overstrike_formatter.rb
167
- - test/test_rdoc_markup_attribute_manager.rb
168
- - test/test_rdoc_info_formatting.rb
169
- - test/test_rdoc_parser_c.rb
170
218
  - test/test_rdoc_ri_attribute_formatter.rb
171
- - test/test_rdoc_markup.rb
219
+ - test/test_rdoc_ri_default_display.rb
220
+ - test/test_rdoc_ri_driver.rb
221
+ - test/test_rdoc_ri_formatter.rb
222
+ - test/test_rdoc_ri_overstrike_formatter.rb