rdoc 4.2.1 → 6.3.1

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 (277) hide show
  1. checksums.yaml +5 -5
  2. data/CONTRIBUTING.rdoc +8 -7
  3. data/Gemfile +12 -0
  4. data/History.rdoc +48 -4
  5. data/LEGAL.rdoc +2 -2
  6. data/README.rdoc +5 -5
  7. data/Rakefile +73 -155
  8. data/bin/console +7 -0
  9. data/bin/setup +6 -0
  10. data/{bin → exe}/rdoc +0 -0
  11. data/{bin → exe}/ri +0 -0
  12. data/lib/rdoc/alias.rb +1 -0
  13. data/lib/rdoc/anon_class.rb +1 -0
  14. data/lib/rdoc/any_method.rb +59 -14
  15. data/lib/rdoc/attr.rb +1 -0
  16. data/lib/rdoc/class_module.rb +5 -2
  17. data/lib/rdoc/code_object.rb +3 -11
  18. data/lib/rdoc/code_objects.rb +1 -0
  19. data/lib/rdoc/comment.rb +32 -11
  20. data/lib/rdoc/constant.rb +3 -2
  21. data/lib/rdoc/context/section.rb +7 -13
  22. data/lib/rdoc/context.rb +78 -23
  23. data/lib/rdoc/cross_reference.rb +33 -14
  24. data/lib/rdoc/encoding.rb +92 -55
  25. data/lib/rdoc/erb_partial.rb +2 -1
  26. data/lib/rdoc/erbio.rb +8 -3
  27. data/lib/rdoc/extend.rb +1 -0
  28. data/lib/rdoc/generator/darkfish.rb +62 -32
  29. data/lib/rdoc/generator/json_index.rb +8 -5
  30. data/lib/rdoc/generator/markup.rb +3 -12
  31. data/lib/rdoc/generator/pot/message_extractor.rb +68 -0
  32. data/lib/rdoc/generator/pot/po.rb +84 -0
  33. data/lib/rdoc/generator/pot/po_entry.rb +141 -0
  34. data/lib/rdoc/generator/pot.rb +4 -3
  35. data/lib/rdoc/generator/ri.rb +1 -0
  36. data/lib/rdoc/generator/template/darkfish/_footer.rhtml +2 -2
  37. data/lib/rdoc/generator/template/darkfish/_head.rhtml +11 -8
  38. data/lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml +2 -2
  39. data/lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml +2 -2
  40. data/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml +7 -7
  41. data/lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml +2 -2
  42. data/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml +7 -7
  43. data/lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml +6 -6
  44. data/lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml +5 -5
  45. data/lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml +5 -5
  46. data/lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml +5 -5
  47. data/lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml +4 -4
  48. data/lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml +4 -4
  49. data/lib/rdoc/generator/template/darkfish/class.rhtml +45 -47
  50. data/lib/rdoc/generator/template/darkfish/css/fonts.css +6 -6
  51. data/lib/rdoc/generator/template/darkfish/css/rdoc.css +55 -6
  52. data/lib/rdoc/generator/template/darkfish/index.rhtml +3 -4
  53. data/lib/rdoc/generator/template/darkfish/js/darkfish.js +23 -100
  54. data/lib/rdoc/generator/template/darkfish/js/search.js +32 -31
  55. data/lib/rdoc/generator/template/darkfish/servlet_root.rhtml +15 -16
  56. data/lib/rdoc/generator/template/darkfish/table_of_contents.rhtml +16 -16
  57. data/lib/rdoc/generator/template/json_index/js/navigation.js +4 -41
  58. data/lib/rdoc/generator/template/json_index/js/searcher.js +7 -6
  59. data/lib/rdoc/generator.rb +1 -1
  60. data/lib/rdoc/ghost_method.rb +1 -0
  61. data/lib/rdoc/i18n/locale.rb +2 -1
  62. data/lib/rdoc/i18n/text.rb +5 -4
  63. data/lib/rdoc/i18n.rb +3 -2
  64. data/lib/rdoc/include.rb +1 -0
  65. data/lib/rdoc/known_classes.rb +1 -0
  66. data/lib/rdoc/markdown/entities.rb +1 -0
  67. data/lib/rdoc/markdown/{literals_1_9.kpeg → literals.kpeg} +1 -0
  68. data/lib/rdoc/markdown/{literals_1_9.rb → literals.rb} +1 -4
  69. data/lib/rdoc/markdown.kpeg +94 -51
  70. data/lib/rdoc/markdown.rb +1171 -619
  71. data/lib/rdoc/markup/attr_changer.rb +1 -0
  72. data/lib/rdoc/markup/attr_span.rb +9 -2
  73. data/lib/rdoc/markup/attribute_manager.rb +115 -49
  74. data/lib/rdoc/markup/attributes.rb +7 -6
  75. data/lib/rdoc/markup/blank_line.rb +1 -0
  76. data/lib/rdoc/markup/block_quote.rb +1 -0
  77. data/lib/rdoc/markup/document.rb +1 -0
  78. data/lib/rdoc/markup/formatter.rb +25 -23
  79. data/lib/rdoc/markup/hard_break.rb +1 -0
  80. data/lib/rdoc/markup/heading.rb +4 -3
  81. data/lib/rdoc/markup/include.rb +1 -0
  82. data/lib/rdoc/markup/indented_paragraph.rb +1 -0
  83. data/lib/rdoc/markup/list.rb +1 -0
  84. data/lib/rdoc/markup/list_item.rb +1 -0
  85. data/lib/rdoc/markup/paragraph.rb +1 -0
  86. data/lib/rdoc/markup/parser.rb +78 -61
  87. data/lib/rdoc/markup/pre_process.rb +12 -9
  88. data/lib/rdoc/markup/raw.rb +1 -0
  89. data/lib/rdoc/markup/regexp_handling.rb +41 -0
  90. data/lib/rdoc/markup/rule.rb +1 -0
  91. data/lib/rdoc/markup/to_ansi.rb +1 -0
  92. data/lib/rdoc/markup/to_bs.rb +4 -5
  93. data/lib/rdoc/markup/to_html.rb +71 -25
  94. data/lib/rdoc/markup/to_html_crossref.rb +41 -25
  95. data/lib/rdoc/markup/to_html_snippet.rb +10 -9
  96. data/lib/rdoc/markup/to_joined_paragraph.rb +7 -31
  97. data/lib/rdoc/markup/to_label.rb +10 -9
  98. data/lib/rdoc/markup/to_markdown.rb +9 -8
  99. data/lib/rdoc/markup/to_rdoc.rb +35 -6
  100. data/lib/rdoc/markup/to_table_of_contents.rb +2 -0
  101. data/lib/rdoc/markup/to_test.rb +1 -0
  102. data/lib/rdoc/markup/to_tt_only.rb +3 -2
  103. data/lib/rdoc/markup/verbatim.rb +1 -0
  104. data/lib/rdoc/markup.rb +14 -16
  105. data/lib/rdoc/meta_method.rb +1 -0
  106. data/lib/rdoc/method_attr.rb +2 -1
  107. data/lib/rdoc/mixin.rb +1 -0
  108. data/lib/rdoc/normal_class.rb +3 -2
  109. data/lib/rdoc/normal_module.rb +1 -0
  110. data/lib/rdoc/options.rb +92 -58
  111. data/lib/rdoc/parser/c.rb +219 -223
  112. data/lib/rdoc/parser/changelog.rb +155 -18
  113. data/lib/rdoc/parser/markdown.rb +1 -0
  114. data/lib/rdoc/parser/rd.rb +1 -0
  115. data/lib/rdoc/parser/ripper_state_lex.rb +590 -0
  116. data/lib/rdoc/parser/ruby.rb +635 -468
  117. data/lib/rdoc/parser/ruby_tools.rb +33 -33
  118. data/lib/rdoc/parser/simple.rb +3 -3
  119. data/lib/rdoc/parser/text.rb +1 -0
  120. data/lib/rdoc/parser.rb +17 -50
  121. data/lib/rdoc/rd/block_parser.rb +66 -65
  122. data/lib/rdoc/rd/block_parser.ry +3 -3
  123. data/lib/rdoc/rd/inline.rb +5 -4
  124. data/lib/rdoc/rd/inline_parser.rb +52 -51
  125. data/lib/rdoc/rd/inline_parser.ry +1 -1
  126. data/lib/rdoc/rd.rb +1 -0
  127. data/lib/rdoc/rdoc.rb +68 -63
  128. data/lib/rdoc/require.rb +1 -0
  129. data/lib/rdoc/ri/driver.rb +133 -58
  130. data/lib/rdoc/ri/formatter.rb +1 -0
  131. data/lib/rdoc/ri/paths.rb +4 -20
  132. data/lib/rdoc/ri/store.rb +1 -0
  133. data/lib/rdoc/ri/task.rb +71 -0
  134. data/lib/rdoc/ri.rb +1 -0
  135. data/lib/rdoc/rubygems_hook.rb +5 -12
  136. data/lib/rdoc/servlet.rb +24 -14
  137. data/lib/rdoc/single_class.rb +1 -0
  138. data/lib/rdoc/stats/normal.rb +20 -21
  139. data/lib/rdoc/stats/quiet.rb +1 -0
  140. data/lib/rdoc/stats/verbose.rb +1 -0
  141. data/lib/rdoc/stats.rb +1 -0
  142. data/lib/rdoc/store.rb +41 -41
  143. data/lib/rdoc/task.rb +2 -3
  144. data/lib/rdoc/text.rb +19 -38
  145. data/lib/rdoc/token_stream.rb +56 -32
  146. data/lib/rdoc/tom_doc.rb +17 -11
  147. data/lib/rdoc/top_level.rb +9 -2
  148. data/lib/rdoc/version.rb +8 -0
  149. data/lib/rdoc.rb +24 -10
  150. data/man/ri.1 +247 -0
  151. data/rdoc.gemspec +248 -0
  152. metadata +43 -236
  153. data/.autotest +0 -24
  154. data/.document +0 -5
  155. data/Manifest.txt +0 -306
  156. data/lib/gauntlet_rdoc.rb +0 -84
  157. data/lib/rdoc/generator/template/darkfish/js/jquery.js +0 -4
  158. data/lib/rdoc/markdown/literals_1_8.kpeg +0 -18
  159. data/lib/rdoc/markdown/literals_1_8.rb +0 -416
  160. data/lib/rdoc/markup/formatter_test_case.rb +0 -767
  161. data/lib/rdoc/markup/inline.rb +0 -1
  162. data/lib/rdoc/markup/special.rb +0 -40
  163. data/lib/rdoc/markup/text_formatter_test_case.rb +0 -114
  164. data/lib/rdoc/ruby_lex.rb +0 -1377
  165. data/lib/rdoc/ruby_token.rb +0 -460
  166. data/lib/rdoc/test_case.rb +0 -217
  167. data/test/MarkdownTest_1.0.3/Amps and angle encoding.text +0 -21
  168. data/test/MarkdownTest_1.0.3/Auto links.text +0 -13
  169. data/test/MarkdownTest_1.0.3/Backslash escapes.text +0 -120
  170. data/test/MarkdownTest_1.0.3/Blockquotes with code blocks.text +0 -11
  171. data/test/MarkdownTest_1.0.3/Code Blocks.text +0 -14
  172. data/test/MarkdownTest_1.0.3/Code Spans.text +0 -6
  173. data/test/MarkdownTest_1.0.3/Hard-wrapped paragraphs with list-like lines.text +0 -8
  174. data/test/MarkdownTest_1.0.3/Horizontal rules.text +0 -67
  175. data/test/MarkdownTest_1.0.3/Inline HTML (Advanced).text +0 -15
  176. data/test/MarkdownTest_1.0.3/Inline HTML (Simple).text +0 -69
  177. data/test/MarkdownTest_1.0.3/Inline HTML comments.text +0 -13
  178. data/test/MarkdownTest_1.0.3/Links, inline style.text +0 -12
  179. data/test/MarkdownTest_1.0.3/Links, reference style.text +0 -71
  180. data/test/MarkdownTest_1.0.3/Links, shortcut references.text +0 -20
  181. data/test/MarkdownTest_1.0.3/Literal quotes in titles.text +0 -7
  182. data/test/MarkdownTest_1.0.3/Markdown Documentation - Basics.text +0 -306
  183. data/test/MarkdownTest_1.0.3/Markdown Documentation - Syntax.text +0 -888
  184. data/test/MarkdownTest_1.0.3/Nested blockquotes.text +0 -5
  185. data/test/MarkdownTest_1.0.3/Ordered and unordered lists.text +0 -131
  186. data/test/MarkdownTest_1.0.3/Strong and em together.text +0 -7
  187. data/test/MarkdownTest_1.0.3/Tabs.text +0 -21
  188. data/test/MarkdownTest_1.0.3/Tidyness.text +0 -5
  189. data/test/README +0 -1
  190. data/test/binary.dat +0 -0
  191. data/test/hidden.zip.txt +0 -1
  192. data/test/test.ja.largedoc +0 -3
  193. data/test/test.ja.rdoc +0 -10
  194. data/test/test.ja.txt +0 -8
  195. data/test/test.txt +0 -1
  196. data/test/test_rdoc_alias.rb +0 -13
  197. data/test/test_rdoc_any_method.rb +0 -460
  198. data/test/test_rdoc_attr.rb +0 -190
  199. data/test/test_rdoc_class_module.rb +0 -1492
  200. data/test/test_rdoc_code_object.rb +0 -450
  201. data/test/test_rdoc_comment.rb +0 -504
  202. data/test/test_rdoc_constant.rb +0 -181
  203. data/test/test_rdoc_context.rb +0 -901
  204. data/test/test_rdoc_context_section.rb +0 -130
  205. data/test/test_rdoc_cross_reference.rb +0 -192
  206. data/test/test_rdoc_encoding.rb +0 -227
  207. data/test/test_rdoc_extend.rb +0 -94
  208. data/test/test_rdoc_generator_darkfish.rb +0 -229
  209. data/test/test_rdoc_generator_json_index.rb +0 -324
  210. data/test/test_rdoc_generator_markup.rb +0 -59
  211. data/test/test_rdoc_generator_pot.rb +0 -91
  212. data/test/test_rdoc_generator_pot_po.rb +0 -51
  213. data/test/test_rdoc_generator_pot_po_entry.rb +0 -139
  214. data/test/test_rdoc_generator_ri.rb +0 -78
  215. data/test/test_rdoc_i18n_locale.rb +0 -73
  216. data/test/test_rdoc_i18n_text.rb +0 -123
  217. data/test/test_rdoc_include.rb +0 -108
  218. data/test/test_rdoc_markdown.rb +0 -980
  219. data/test/test_rdoc_markdown_test.rb +0 -1884
  220. data/test/test_rdoc_markup.rb +0 -95
  221. data/test/test_rdoc_markup_attribute_manager.rb +0 -364
  222. data/test/test_rdoc_markup_attributes.rb +0 -39
  223. data/test/test_rdoc_markup_document.rb +0 -207
  224. data/test/test_rdoc_markup_formatter.rb +0 -175
  225. data/test/test_rdoc_markup_hard_break.rb +0 -31
  226. data/test/test_rdoc_markup_heading.rb +0 -29
  227. data/test/test_rdoc_markup_include.rb +0 -19
  228. data/test/test_rdoc_markup_indented_paragraph.rb +0 -53
  229. data/test/test_rdoc_markup_paragraph.rb +0 -32
  230. data/test/test_rdoc_markup_parser.rb +0 -1680
  231. data/test/test_rdoc_markup_pre_process.rb +0 -473
  232. data/test/test_rdoc_markup_raw.rb +0 -22
  233. data/test/test_rdoc_markup_to_ansi.rb +0 -369
  234. data/test/test_rdoc_markup_to_bs.rb +0 -366
  235. data/test/test_rdoc_markup_to_html.rb +0 -662
  236. data/test/test_rdoc_markup_to_html_crossref.rb +0 -225
  237. data/test/test_rdoc_markup_to_html_snippet.rb +0 -711
  238. data/test/test_rdoc_markup_to_joined_paragraph.rb +0 -32
  239. data/test/test_rdoc_markup_to_label.rb +0 -112
  240. data/test/test_rdoc_markup_to_markdown.rb +0 -389
  241. data/test/test_rdoc_markup_to_rdoc.rb +0 -377
  242. data/test/test_rdoc_markup_to_table_of_contents.rb +0 -126
  243. data/test/test_rdoc_markup_to_tt_only.rb +0 -246
  244. data/test/test_rdoc_markup_verbatim.rb +0 -29
  245. data/test/test_rdoc_method_attr.rb +0 -193
  246. data/test/test_rdoc_normal_class.rb +0 -47
  247. data/test/test_rdoc_normal_module.rb +0 -42
  248. data/test/test_rdoc_options.rb +0 -766
  249. data/test/test_rdoc_parser.rb +0 -327
  250. data/test/test_rdoc_parser_c.rb +0 -1896
  251. data/test/test_rdoc_parser_changelog.rb +0 -315
  252. data/test/test_rdoc_parser_markdown.rb +0 -61
  253. data/test/test_rdoc_parser_rd.rb +0 -55
  254. data/test/test_rdoc_parser_ruby.rb +0 -3322
  255. data/test/test_rdoc_parser_simple.rb +0 -115
  256. data/test/test_rdoc_rd.rb +0 -30
  257. data/test/test_rdoc_rd_block_parser.rb +0 -535
  258. data/test/test_rdoc_rd_inline.rb +0 -63
  259. data/test/test_rdoc_rd_inline_parser.rb +0 -177
  260. data/test/test_rdoc_rdoc.rb +0 -455
  261. data/test/test_rdoc_require.rb +0 -25
  262. data/test/test_rdoc_ri_driver.rb +0 -1436
  263. data/test/test_rdoc_ri_paths.rb +0 -155
  264. data/test/test_rdoc_ruby_lex.rb +0 -421
  265. data/test/test_rdoc_ruby_token.rb +0 -19
  266. data/test/test_rdoc_rubygems_hook.rb +0 -251
  267. data/test/test_rdoc_servlet.rb +0 -534
  268. data/test/test_rdoc_single_class.rb +0 -20
  269. data/test/test_rdoc_stats.rb +0 -722
  270. data/test/test_rdoc_store.rb +0 -993
  271. data/test/test_rdoc_task.rb +0 -173
  272. data/test/test_rdoc_text.rb +0 -557
  273. data/test/test_rdoc_token_stream.rb +0 -42
  274. data/test/test_rdoc_tom_doc.rb +0 -520
  275. data/test/test_rdoc_top_level.rb +0 -287
  276. data/test/xref_data.rb +0 -76
  277. data/test/xref_test_case.rb +0 -67
data/rdoc.gemspec ADDED
@@ -0,0 +1,248 @@
1
+ begin
2
+ require_relative "lib/rdoc/version"
3
+ rescue LoadError
4
+ # for Ruby repository
5
+ require_relative "version"
6
+ end
7
+
8
+ Gem::Specification.new do |s|
9
+ s.name = "rdoc"
10
+ s.version = RDoc::VERSION
11
+
12
+ s.authors = [
13
+ "Eric Hodel",
14
+ "Dave Thomas",
15
+ "Phil Hagelberg",
16
+ "Tony Strauss",
17
+ "Zachary Scott",
18
+ "Hiroshi SHIBATA",
19
+ "ITOYANAGI Sakura"
20
+ ]
21
+ s.email = ["drbrain@segment7.net", "", "", "", "mail@zzak.io", "hsbt@ruby-lang.org", "aycabta@gmail.com"]
22
+
23
+ s.summary = "RDoc produces HTML and command-line documentation for Ruby projects"
24
+ s.description = <<-DESCRIPTION
25
+ RDoc produces HTML and command-line documentation for Ruby projects.
26
+ RDoc includes the +rdoc+ and +ri+ tools for generating and displaying documentation from the command-line.
27
+ DESCRIPTION
28
+ s.homepage = "https://ruby.github.io/rdoc"
29
+ s.licenses = ["Ruby"]
30
+
31
+ s.bindir = "exe"
32
+ s.executables = ["rdoc", "ri"]
33
+ s.require_paths = ["lib"]
34
+ # for ruby core repository. It was generated by
35
+ # `git ls-files -z`.split("\x0").each {|f| puts " #{f.dump}," unless f.start_with?(*%W[test/ spec/ features/ .]) }
36
+ s.files = [
37
+ "CONTRIBUTING.rdoc",
38
+ "CVE-2013-0256.rdoc",
39
+ "ExampleMarkdown.md",
40
+ "ExampleRDoc.rdoc",
41
+ "Gemfile",
42
+ "History.rdoc",
43
+ "LEGAL.rdoc",
44
+ "LICENSE.rdoc",
45
+ "README.rdoc",
46
+ "RI.rdoc",
47
+ "Rakefile",
48
+ "TODO.rdoc",
49
+ "bin/console",
50
+ "bin/setup",
51
+ "exe/rdoc",
52
+ "exe/ri",
53
+ "man/ri.1",
54
+ "lib/rdoc.rb",
55
+ "lib/rdoc/alias.rb",
56
+ "lib/rdoc/anon_class.rb",
57
+ "lib/rdoc/any_method.rb",
58
+ "lib/rdoc/attr.rb",
59
+ "lib/rdoc/class_module.rb",
60
+ "lib/rdoc/code_object.rb",
61
+ "lib/rdoc/code_objects.rb",
62
+ "lib/rdoc/comment.rb",
63
+ "lib/rdoc/constant.rb",
64
+ "lib/rdoc/context.rb",
65
+ "lib/rdoc/context/section.rb",
66
+ "lib/rdoc/cross_reference.rb",
67
+ "lib/rdoc/encoding.rb",
68
+ "lib/rdoc/erb_partial.rb",
69
+ "lib/rdoc/erbio.rb",
70
+ "lib/rdoc/extend.rb",
71
+ "lib/rdoc/generator.rb",
72
+ "lib/rdoc/generator/darkfish.rb",
73
+ "lib/rdoc/generator/json_index.rb",
74
+ "lib/rdoc/generator/markup.rb",
75
+ "lib/rdoc/generator/pot.rb",
76
+ "lib/rdoc/generator/pot/message_extractor.rb",
77
+ "lib/rdoc/generator/pot/po.rb",
78
+ "lib/rdoc/generator/pot/po_entry.rb",
79
+ "lib/rdoc/generator/ri.rb",
80
+ "lib/rdoc/generator/template/darkfish/.document",
81
+ "lib/rdoc/generator/template/darkfish/_footer.rhtml",
82
+ "lib/rdoc/generator/template/darkfish/_head.rhtml",
83
+ "lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml",
84
+ "lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml",
85
+ "lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml",
86
+ "lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml",
87
+ "lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml",
88
+ "lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml",
89
+ "lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml",
90
+ "lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml",
91
+ "lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml",
92
+ "lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml",
93
+ "lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml",
94
+ "lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml",
95
+ "lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml",
96
+ "lib/rdoc/generator/template/darkfish/class.rhtml",
97
+ "lib/rdoc/generator/template/darkfish/css/fonts.css",
98
+ "lib/rdoc/generator/template/darkfish/css/rdoc.css",
99
+ "lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf",
100
+ "lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf",
101
+ "lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf",
102
+ "lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf",
103
+ "lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf",
104
+ "lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf",
105
+ "lib/rdoc/generator/template/darkfish/images/add.png",
106
+ "lib/rdoc/generator/template/darkfish/images/arrow_up.png",
107
+ "lib/rdoc/generator/template/darkfish/images/brick.png",
108
+ "lib/rdoc/generator/template/darkfish/images/brick_link.png",
109
+ "lib/rdoc/generator/template/darkfish/images/bug.png",
110
+ "lib/rdoc/generator/template/darkfish/images/bullet_black.png",
111
+ "lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png",
112
+ "lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png",
113
+ "lib/rdoc/generator/template/darkfish/images/date.png",
114
+ "lib/rdoc/generator/template/darkfish/images/delete.png",
115
+ "lib/rdoc/generator/template/darkfish/images/find.png",
116
+ "lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif",
117
+ "lib/rdoc/generator/template/darkfish/images/macFFBgHack.png",
118
+ "lib/rdoc/generator/template/darkfish/images/package.png",
119
+ "lib/rdoc/generator/template/darkfish/images/page_green.png",
120
+ "lib/rdoc/generator/template/darkfish/images/page_white_text.png",
121
+ "lib/rdoc/generator/template/darkfish/images/page_white_width.png",
122
+ "lib/rdoc/generator/template/darkfish/images/plugin.png",
123
+ "lib/rdoc/generator/template/darkfish/images/ruby.png",
124
+ "lib/rdoc/generator/template/darkfish/images/tag_blue.png",
125
+ "lib/rdoc/generator/template/darkfish/images/tag_green.png",
126
+ "lib/rdoc/generator/template/darkfish/images/transparent.png",
127
+ "lib/rdoc/generator/template/darkfish/images/wrench.png",
128
+ "lib/rdoc/generator/template/darkfish/images/wrench_orange.png",
129
+ "lib/rdoc/generator/template/darkfish/images/zoom.png",
130
+ "lib/rdoc/generator/template/darkfish/index.rhtml",
131
+ "lib/rdoc/generator/template/darkfish/js/darkfish.js",
132
+ "lib/rdoc/generator/template/darkfish/js/search.js",
133
+ "lib/rdoc/generator/template/darkfish/page.rhtml",
134
+ "lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml",
135
+ "lib/rdoc/generator/template/darkfish/servlet_root.rhtml",
136
+ "lib/rdoc/generator/template/darkfish/table_of_contents.rhtml",
137
+ "lib/rdoc/generator/template/json_index/.document",
138
+ "lib/rdoc/generator/template/json_index/js/navigation.js",
139
+ "lib/rdoc/generator/template/json_index/js/searcher.js",
140
+ "lib/rdoc/ghost_method.rb",
141
+ "lib/rdoc/i18n.rb",
142
+ "lib/rdoc/i18n/locale.rb",
143
+ "lib/rdoc/i18n/text.rb",
144
+ "lib/rdoc/include.rb",
145
+ "lib/rdoc/known_classes.rb",
146
+ "lib/rdoc/markdown.kpeg",
147
+ "lib/rdoc/markdown/entities.rb",
148
+ "lib/rdoc/markdown/literals.kpeg",
149
+ "lib/rdoc/markup.rb",
150
+ "lib/rdoc/markup/attr_changer.rb",
151
+ "lib/rdoc/markup/attr_span.rb",
152
+ "lib/rdoc/markup/attribute_manager.rb",
153
+ "lib/rdoc/markup/attributes.rb",
154
+ "lib/rdoc/markup/blank_line.rb",
155
+ "lib/rdoc/markup/block_quote.rb",
156
+ "lib/rdoc/markup/document.rb",
157
+ "lib/rdoc/markup/formatter.rb",
158
+ "lib/rdoc/markup/hard_break.rb",
159
+ "lib/rdoc/markup/heading.rb",
160
+ "lib/rdoc/markup/include.rb",
161
+ "lib/rdoc/markup/indented_paragraph.rb",
162
+ "lib/rdoc/markup/list.rb",
163
+ "lib/rdoc/markup/list_item.rb",
164
+ "lib/rdoc/markup/paragraph.rb",
165
+ "lib/rdoc/markup/parser.rb",
166
+ "lib/rdoc/markup/pre_process.rb",
167
+ "lib/rdoc/markup/raw.rb",
168
+ "lib/rdoc/markup/regexp_handling.rb",
169
+ "lib/rdoc/markup/rule.rb",
170
+ "lib/rdoc/markup/to_ansi.rb",
171
+ "lib/rdoc/markup/to_bs.rb",
172
+ "lib/rdoc/markup/to_html.rb",
173
+ "lib/rdoc/markup/to_html_crossref.rb",
174
+ "lib/rdoc/markup/to_html_snippet.rb",
175
+ "lib/rdoc/markup/to_joined_paragraph.rb",
176
+ "lib/rdoc/markup/to_label.rb",
177
+ "lib/rdoc/markup/to_markdown.rb",
178
+ "lib/rdoc/markup/to_rdoc.rb",
179
+ "lib/rdoc/markup/to_table_of_contents.rb",
180
+ "lib/rdoc/markup/to_test.rb",
181
+ "lib/rdoc/markup/to_tt_only.rb",
182
+ "lib/rdoc/markup/verbatim.rb",
183
+ "lib/rdoc/meta_method.rb",
184
+ "lib/rdoc/method_attr.rb",
185
+ "lib/rdoc/mixin.rb",
186
+ "lib/rdoc/normal_class.rb",
187
+ "lib/rdoc/normal_module.rb",
188
+ "lib/rdoc/options.rb",
189
+ "lib/rdoc/parser.rb",
190
+ "lib/rdoc/parser/c.rb",
191
+ "lib/rdoc/parser/changelog.rb",
192
+ "lib/rdoc/parser/markdown.rb",
193
+ "lib/rdoc/parser/rd.rb",
194
+ "lib/rdoc/parser/ripper_state_lex.rb",
195
+ "lib/rdoc/parser/ruby.rb",
196
+ "lib/rdoc/parser/ruby_tools.rb",
197
+ "lib/rdoc/parser/simple.rb",
198
+ "lib/rdoc/parser/text.rb",
199
+ "lib/rdoc/rd.rb",
200
+ "lib/rdoc/rd/block_parser.ry",
201
+ "lib/rdoc/rd/inline.rb",
202
+ "lib/rdoc/rd/inline_parser.ry",
203
+ "lib/rdoc/rdoc.rb",
204
+ "lib/rdoc/require.rb",
205
+ "lib/rdoc/ri.rb",
206
+ "lib/rdoc/ri/driver.rb",
207
+ "lib/rdoc/ri/formatter.rb",
208
+ "lib/rdoc/ri/paths.rb",
209
+ "lib/rdoc/ri/store.rb",
210
+ "lib/rdoc/ri/task.rb",
211
+ "lib/rdoc/rubygems_hook.rb",
212
+ "lib/rdoc/servlet.rb",
213
+ "lib/rdoc/single_class.rb",
214
+ "lib/rdoc/stats.rb",
215
+ "lib/rdoc/stats/normal.rb",
216
+ "lib/rdoc/stats/quiet.rb",
217
+ "lib/rdoc/stats/verbose.rb",
218
+ "lib/rdoc/store.rb",
219
+ "lib/rdoc/task.rb",
220
+ "lib/rdoc/text.rb",
221
+ "lib/rdoc/token_stream.rb",
222
+ "lib/rdoc/tom_doc.rb",
223
+ "lib/rdoc/top_level.rb",
224
+ "lib/rdoc/version.rb",
225
+ "rdoc.gemspec",
226
+ ]
227
+ # files from .gitignore
228
+ s.files << "lib/rdoc/rd/block_parser.rb" << "lib/rdoc/rd/inline_parser.rb" << "lib/rdoc/markdown.rb" << "lib/rdoc/markdown/literals.rb"
229
+
230
+ s.rdoc_options = ["--main", "README.rdoc"]
231
+ s.extra_rdoc_files += %w[
232
+ CVE-2013-0256.rdoc
233
+ CONTRIBUTING.rdoc
234
+ ExampleMarkdown.md
235
+ ExampleRDoc.rdoc
236
+ History.rdoc
237
+ LEGAL.rdoc
238
+ LICENSE.rdoc
239
+ README.rdoc
240
+ RI.rdoc
241
+ TODO.rdoc
242
+ ]
243
+
244
+ s.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
245
+ s.required_rubygems_version = Gem::Requirement.new(">= 2.2")
246
+
247
+ s.add_development_dependency("gettext")
248
+ end
metadata CHANGED
@@ -1,152 +1,78 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.1
4
+ version: 6.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Hodel
8
8
  - Dave Thomas
9
9
  - Phil Hagelberg
10
10
  - Tony Strauss
11
- autorequire:
12
- bindir: bin
11
+ - Zachary Scott
12
+ - Hiroshi SHIBATA
13
+ - ITOYANAGI Sakura
14
+ autorequire:
15
+ bindir: exe
13
16
  cert_chain: []
14
- date: 2015-12-22 00:00:00.000000000 Z
17
+ date: 2021-05-02 00:00:00.000000000 Z
15
18
  dependencies:
16
19
  - !ruby/object:Gem::Dependency
17
- name: json
20
+ name: gettext
18
21
  requirement: !ruby/object:Gem::Requirement
19
22
  requirements:
20
- - - "~>"
23
+ - - ">="
21
24
  - !ruby/object:Gem::Version
22
- version: '1.4'
23
- type: :runtime
24
- prerelease: false
25
- version_requirements: !ruby/object:Gem::Requirement
26
- requirements:
27
- - - "~>"
28
- - !ruby/object:Gem::Version
29
- version: '1.4'
30
- - !ruby/object:Gem::Dependency
31
- name: kpeg
32
- requirement: !ruby/object:Gem::Requirement
33
- requirements:
34
- - - "~>"
35
- - !ruby/object:Gem::Version
36
- version: '0.9'
37
- type: :development
38
- prerelease: false
39
- version_requirements: !ruby/object:Gem::Requirement
40
- requirements:
41
- - - "~>"
42
- - !ruby/object:Gem::Version
43
- version: '0.9'
44
- - !ruby/object:Gem::Dependency
45
- name: minitest
46
- requirement: !ruby/object:Gem::Requirement
47
- requirements:
48
- - - "~>"
49
- - !ruby/object:Gem::Version
50
- version: '5.8'
51
- type: :development
52
- prerelease: false
53
- version_requirements: !ruby/object:Gem::Requirement
54
- requirements:
55
- - - "~>"
56
- - !ruby/object:Gem::Version
57
- version: '5.8'
58
- - !ruby/object:Gem::Dependency
59
- name: rdoc
60
- requirement: !ruby/object:Gem::Requirement
61
- requirements:
62
- - - "~>"
63
- - !ruby/object:Gem::Version
64
- version: '4.0'
25
+ version: '0'
65
26
  type: :development
66
27
  prerelease: false
67
28
  version_requirements: !ruby/object:Gem::Requirement
68
29
  requirements:
69
- - - "~>"
30
+ - - ">="
70
31
  - !ruby/object:Gem::Version
71
- version: '4.0'
72
- - !ruby/object:Gem::Dependency
73
- name: racc
74
- requirement: !ruby/object:Gem::Requirement
75
- requirements:
76
- - - "~>"
77
- - !ruby/object:Gem::Version
78
- version: '1.4'
79
- - - ">"
80
- - !ruby/object:Gem::Version
81
- version: 1.4.10
82
- type: :development
83
- prerelease: false
84
- version_requirements: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - "~>"
87
- - !ruby/object:Gem::Version
88
- version: '1.4'
89
- - - ">"
90
- - !ruby/object:Gem::Version
91
- version: 1.4.10
92
- - !ruby/object:Gem::Dependency
93
- name: hoe
94
- requirement: !ruby/object:Gem::Requirement
95
- requirements:
96
- - - "~>"
97
- - !ruby/object:Gem::Version
98
- version: '3.14'
99
- type: :development
100
- prerelease: false
101
- version_requirements: !ruby/object:Gem::Requirement
102
- requirements:
103
- - - "~>"
104
- - !ruby/object:Gem::Version
105
- version: '3.14'
106
- description: |-
107
- RDoc produces HTML and command-line documentation for Ruby projects. RDoc
108
- includes the +rdoc+ and +ri+ tools for generating and displaying documentation
109
- from the command-line.
32
+ version: '0'
33
+ description: |
34
+ RDoc produces HTML and command-line documentation for Ruby projects.
35
+ RDoc includes the +rdoc+ and +ri+ tools for generating and displaying documentation from the command-line.
110
36
  email:
111
37
  - drbrain@segment7.net
112
38
  - ''
113
- - technomancy@gmail.com
114
- - tony.strauss@designingpatterns.com
39
+ - ''
40
+ - ''
41
+ - mail@zzak.io
42
+ - hsbt@ruby-lang.org
43
+ - aycabta@gmail.com
115
44
  executables:
116
45
  - rdoc
117
46
  - ri
118
47
  extensions: []
119
48
  extra_rdoc_files:
120
- - CONTRIBUTING.rdoc
121
49
  - CVE-2013-0256.rdoc
50
+ - CONTRIBUTING.rdoc
122
51
  - ExampleMarkdown.md
123
52
  - ExampleRDoc.rdoc
124
53
  - History.rdoc
125
54
  - LEGAL.rdoc
126
55
  - LICENSE.rdoc
127
- - Manifest.txt
128
56
  - README.rdoc
129
57
  - RI.rdoc
130
58
  - TODO.rdoc
131
- - Rakefile
132
59
  files:
133
- - ".autotest"
134
- - ".document"
135
60
  - CONTRIBUTING.rdoc
136
61
  - CVE-2013-0256.rdoc
137
62
  - ExampleMarkdown.md
138
63
  - ExampleRDoc.rdoc
64
+ - Gemfile
139
65
  - History.rdoc
140
66
  - LEGAL.rdoc
141
67
  - LICENSE.rdoc
142
- - Manifest.txt
143
68
  - README.rdoc
144
69
  - RI.rdoc
145
70
  - Rakefile
146
71
  - TODO.rdoc
147
- - bin/rdoc
148
- - bin/ri
149
- - lib/gauntlet_rdoc.rb
72
+ - bin/console
73
+ - bin/setup
74
+ - exe/rdoc
75
+ - exe/ri
150
76
  - lib/rdoc.rb
151
77
  - lib/rdoc/alias.rb
152
78
  - lib/rdoc/anon_class.rb
@@ -169,6 +95,9 @@ files:
169
95
  - lib/rdoc/generator/json_index.rb
170
96
  - lib/rdoc/generator/markup.rb
171
97
  - lib/rdoc/generator/pot.rb
98
+ - lib/rdoc/generator/pot/message_extractor.rb
99
+ - lib/rdoc/generator/pot/po.rb
100
+ - lib/rdoc/generator/pot/po_entry.rb
172
101
  - lib/rdoc/generator/ri.rb
173
102
  - lib/rdoc/generator/template/darkfish/.document
174
103
  - lib/rdoc/generator/template/darkfish/_footer.rhtml
@@ -222,7 +151,6 @@ files:
222
151
  - lib/rdoc/generator/template/darkfish/images/zoom.png
223
152
  - lib/rdoc/generator/template/darkfish/index.rhtml
224
153
  - lib/rdoc/generator/template/darkfish/js/darkfish.js
225
- - lib/rdoc/generator/template/darkfish/js/jquery.js
226
154
  - lib/rdoc/generator/template/darkfish/js/search.js
227
155
  - lib/rdoc/generator/template/darkfish/page.rhtml
228
156
  - lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml
@@ -240,10 +168,8 @@ files:
240
168
  - lib/rdoc/markdown.kpeg
241
169
  - lib/rdoc/markdown.rb
242
170
  - lib/rdoc/markdown/entities.rb
243
- - lib/rdoc/markdown/literals_1_8.kpeg
244
- - lib/rdoc/markdown/literals_1_8.rb
245
- - lib/rdoc/markdown/literals_1_9.kpeg
246
- - lib/rdoc/markdown/literals_1_9.rb
171
+ - lib/rdoc/markdown/literals.kpeg
172
+ - lib/rdoc/markdown/literals.rb
247
173
  - lib/rdoc/markup.rb
248
174
  - lib/rdoc/markup/attr_changer.rb
249
175
  - lib/rdoc/markup/attr_span.rb
@@ -253,21 +179,18 @@ files:
253
179
  - lib/rdoc/markup/block_quote.rb
254
180
  - lib/rdoc/markup/document.rb
255
181
  - lib/rdoc/markup/formatter.rb
256
- - lib/rdoc/markup/formatter_test_case.rb
257
182
  - lib/rdoc/markup/hard_break.rb
258
183
  - lib/rdoc/markup/heading.rb
259
184
  - lib/rdoc/markup/include.rb
260
185
  - lib/rdoc/markup/indented_paragraph.rb
261
- - lib/rdoc/markup/inline.rb
262
186
  - lib/rdoc/markup/list.rb
263
187
  - lib/rdoc/markup/list_item.rb
264
188
  - lib/rdoc/markup/paragraph.rb
265
189
  - lib/rdoc/markup/parser.rb
266
190
  - lib/rdoc/markup/pre_process.rb
267
191
  - lib/rdoc/markup/raw.rb
192
+ - lib/rdoc/markup/regexp_handling.rb
268
193
  - lib/rdoc/markup/rule.rb
269
- - lib/rdoc/markup/special.rb
270
- - lib/rdoc/markup/text_formatter_test_case.rb
271
194
  - lib/rdoc/markup/to_ansi.rb
272
195
  - lib/rdoc/markup/to_bs.rb
273
196
  - lib/rdoc/markup/to_html.rb
@@ -292,6 +215,7 @@ files:
292
215
  - lib/rdoc/parser/changelog.rb
293
216
  - lib/rdoc/parser/markdown.rb
294
217
  - lib/rdoc/parser/rd.rb
218
+ - lib/rdoc/parser/ripper_state_lex.rb
295
219
  - lib/rdoc/parser/ruby.rb
296
220
  - lib/rdoc/parser/ruby_tools.rb
297
221
  - lib/rdoc/parser/simple.rb
@@ -309,8 +233,7 @@ files:
309
233
  - lib/rdoc/ri/formatter.rb
310
234
  - lib/rdoc/ri/paths.rb
311
235
  - lib/rdoc/ri/store.rb
312
- - lib/rdoc/ruby_lex.rb
313
- - lib/rdoc/ruby_token.rb
236
+ - lib/rdoc/ri/task.rb
314
237
  - lib/rdoc/rubygems_hook.rb
315
238
  - lib/rdoc/servlet.rb
316
239
  - lib/rdoc/single_class.rb
@@ -320,133 +243,18 @@ files:
320
243
  - lib/rdoc/stats/verbose.rb
321
244
  - lib/rdoc/store.rb
322
245
  - lib/rdoc/task.rb
323
- - lib/rdoc/test_case.rb
324
246
  - lib/rdoc/text.rb
325
247
  - lib/rdoc/token_stream.rb
326
248
  - lib/rdoc/tom_doc.rb
327
249
  - lib/rdoc/top_level.rb
328
- - test/MarkdownTest_1.0.3/Amps and angle encoding.text
329
- - test/MarkdownTest_1.0.3/Auto links.text
330
- - test/MarkdownTest_1.0.3/Backslash escapes.text
331
- - test/MarkdownTest_1.0.3/Blockquotes with code blocks.text
332
- - test/MarkdownTest_1.0.3/Code Blocks.text
333
- - test/MarkdownTest_1.0.3/Code Spans.text
334
- - test/MarkdownTest_1.0.3/Hard-wrapped paragraphs with list-like lines.text
335
- - test/MarkdownTest_1.0.3/Horizontal rules.text
336
- - test/MarkdownTest_1.0.3/Inline HTML (Advanced).text
337
- - test/MarkdownTest_1.0.3/Inline HTML (Simple).text
338
- - test/MarkdownTest_1.0.3/Inline HTML comments.text
339
- - test/MarkdownTest_1.0.3/Links, inline style.text
340
- - test/MarkdownTest_1.0.3/Links, reference style.text
341
- - test/MarkdownTest_1.0.3/Links, shortcut references.text
342
- - test/MarkdownTest_1.0.3/Literal quotes in titles.text
343
- - test/MarkdownTest_1.0.3/Markdown Documentation - Basics.text
344
- - test/MarkdownTest_1.0.3/Markdown Documentation - Syntax.text
345
- - test/MarkdownTest_1.0.3/Nested blockquotes.text
346
- - test/MarkdownTest_1.0.3/Ordered and unordered lists.text
347
- - test/MarkdownTest_1.0.3/Strong and em together.text
348
- - test/MarkdownTest_1.0.3/Tabs.text
349
- - test/MarkdownTest_1.0.3/Tidyness.text
350
- - test/README
351
- - test/binary.dat
352
- - test/hidden.zip.txt
353
- - test/test.ja.largedoc
354
- - test/test.ja.rdoc
355
- - test/test.ja.txt
356
- - test/test.txt
357
- - test/test_rdoc_alias.rb
358
- - test/test_rdoc_any_method.rb
359
- - test/test_rdoc_attr.rb
360
- - test/test_rdoc_class_module.rb
361
- - test/test_rdoc_code_object.rb
362
- - test/test_rdoc_comment.rb
363
- - test/test_rdoc_constant.rb
364
- - test/test_rdoc_context.rb
365
- - test/test_rdoc_context_section.rb
366
- - test/test_rdoc_cross_reference.rb
367
- - test/test_rdoc_encoding.rb
368
- - test/test_rdoc_extend.rb
369
- - test/test_rdoc_generator_darkfish.rb
370
- - test/test_rdoc_generator_json_index.rb
371
- - test/test_rdoc_generator_markup.rb
372
- - test/test_rdoc_generator_pot.rb
373
- - test/test_rdoc_generator_pot_po.rb
374
- - test/test_rdoc_generator_pot_po_entry.rb
375
- - test/test_rdoc_generator_ri.rb
376
- - test/test_rdoc_i18n_locale.rb
377
- - test/test_rdoc_i18n_text.rb
378
- - test/test_rdoc_include.rb
379
- - test/test_rdoc_markdown.rb
380
- - test/test_rdoc_markdown_test.rb
381
- - test/test_rdoc_markup.rb
382
- - test/test_rdoc_markup_attribute_manager.rb
383
- - test/test_rdoc_markup_attributes.rb
384
- - test/test_rdoc_markup_document.rb
385
- - test/test_rdoc_markup_formatter.rb
386
- - test/test_rdoc_markup_hard_break.rb
387
- - test/test_rdoc_markup_heading.rb
388
- - test/test_rdoc_markup_include.rb
389
- - test/test_rdoc_markup_indented_paragraph.rb
390
- - test/test_rdoc_markup_paragraph.rb
391
- - test/test_rdoc_markup_parser.rb
392
- - test/test_rdoc_markup_pre_process.rb
393
- - test/test_rdoc_markup_raw.rb
394
- - test/test_rdoc_markup_to_ansi.rb
395
- - test/test_rdoc_markup_to_bs.rb
396
- - test/test_rdoc_markup_to_html.rb
397
- - test/test_rdoc_markup_to_html_crossref.rb
398
- - test/test_rdoc_markup_to_html_snippet.rb
399
- - test/test_rdoc_markup_to_joined_paragraph.rb
400
- - test/test_rdoc_markup_to_label.rb
401
- - test/test_rdoc_markup_to_markdown.rb
402
- - test/test_rdoc_markup_to_rdoc.rb
403
- - test/test_rdoc_markup_to_table_of_contents.rb
404
- - test/test_rdoc_markup_to_tt_only.rb
405
- - test/test_rdoc_markup_verbatim.rb
406
- - test/test_rdoc_method_attr.rb
407
- - test/test_rdoc_normal_class.rb
408
- - test/test_rdoc_normal_module.rb
409
- - test/test_rdoc_options.rb
410
- - test/test_rdoc_parser.rb
411
- - test/test_rdoc_parser_c.rb
412
- - test/test_rdoc_parser_changelog.rb
413
- - test/test_rdoc_parser_markdown.rb
414
- - test/test_rdoc_parser_rd.rb
415
- - test/test_rdoc_parser_ruby.rb
416
- - test/test_rdoc_parser_simple.rb
417
- - test/test_rdoc_rd.rb
418
- - test/test_rdoc_rd_block_parser.rb
419
- - test/test_rdoc_rd_inline.rb
420
- - test/test_rdoc_rd_inline_parser.rb
421
- - test/test_rdoc_rdoc.rb
422
- - test/test_rdoc_require.rb
423
- - test/test_rdoc_ri_driver.rb
424
- - test/test_rdoc_ri_paths.rb
425
- - test/test_rdoc_ruby_lex.rb
426
- - test/test_rdoc_ruby_token.rb
427
- - test/test_rdoc_rubygems_hook.rb
428
- - test/test_rdoc_servlet.rb
429
- - test/test_rdoc_single_class.rb
430
- - test/test_rdoc_stats.rb
431
- - test/test_rdoc_store.rb
432
- - test/test_rdoc_task.rb
433
- - test/test_rdoc_text.rb
434
- - test/test_rdoc_token_stream.rb
435
- - test/test_rdoc_tom_doc.rb
436
- - test/test_rdoc_top_level.rb
437
- - test/xref_data.rb
438
- - test/xref_test_case.rb
439
- homepage: http://docs.seattlerb.org/rdoc
250
+ - lib/rdoc/version.rb
251
+ - man/ri.1
252
+ - rdoc.gemspec
253
+ homepage: https://ruby.github.io/rdoc
440
254
  licenses:
441
255
  - Ruby
442
256
  metadata: {}
443
- post_install_message: |
444
- Depending on your version of ruby, you may need to install ruby rdoc/ri data:
445
-
446
- <= 1.8.6 : unsupported
447
- = 1.8.7 : gem install rdoc-data; rdoc-data --install
448
- = 1.9.1 : gem install rdoc-data; rdoc-data --install
449
- >= 1.9.2 : nothing to do! Yay!
257
+ post_install_message:
450
258
  rdoc_options:
451
259
  - "--main"
452
260
  - README.rdoc
@@ -456,16 +264,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
456
264
  requirements:
457
265
  - - ">="
458
266
  - !ruby/object:Gem::Version
459
- version: 1.8.7
267
+ version: 2.4.0
460
268
  required_rubygems_version: !ruby/object:Gem::Requirement
461
269
  requirements:
462
270
  - - ">="
463
271
  - !ruby/object:Gem::Version
464
- version: '1.3'
272
+ version: '2.2'
465
273
  requirements: []
466
- rubyforge_project:
467
- rubygems_version: 2.5.1
468
- signing_key:
274
+ rubygems_version: 3.2.15
275
+ signing_key:
469
276
  specification_version: 4
470
277
  summary: RDoc produces HTML and command-line documentation for Ruby projects
471
278
  test_files: []
data/.autotest DELETED
@@ -1,24 +0,0 @@
1
- require 'autotest/restart'
2
-
3
- Autotest.add_hook :run_command do |_, cmd|
4
- system "#{Gem.ruby} -rubygems #{Gem.bin_path 'rake', 'rake'} generate"
5
- cmd.sub! ' -e ', ' -we '
6
- cmd.sub! "'minitest'", "'minitest', '~> 4.7'"
7
- end
8
-
9
- Autotest.add_hook :initialize do |at|
10
- at.testlib = ''
11
- at.add_exception '.git'
12
-
13
- def at.path_to_classname s
14
- sep = File::SEPARATOR
15
- f = s.sub(/^test#{sep}/, '').sub(/\.rb$/, '').split(sep)
16
- f = f.map { |path| path.split(/_|(\d+)/).map { |seg| seg.capitalize }.join }
17
- f = f.map { |path| path =~ /^Test/ ? path : "Test#{path}" }
18
- f.join('::').
19
- gsub('Rdoc', 'RDoc').
20
- gsub('Ri', 'RI').
21
- gsub('Changelog', 'ChangeLog')
22
- end
23
- end
24
-
data/.document DELETED
@@ -1,5 +0,0 @@
1
- History.txt
2
- LICENSE.txt
3
- README.txt
4
- RI.txt
5
- lib