rdoc 6.1.0 → 6.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 (76) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +9 -0
  3. data/README.rdoc +0 -1
  4. data/Rakefile +12 -4
  5. data/lib/rdoc.rb +21 -0
  6. data/lib/rdoc/any_method.rb +52 -7
  7. data/lib/rdoc/class_module.rb +1 -1
  8. data/lib/rdoc/comment.rb +12 -1
  9. data/lib/rdoc/context.rb +10 -2
  10. data/lib/rdoc/context/section.rb +0 -13
  11. data/lib/rdoc/cross_reference.rb +4 -4
  12. data/lib/rdoc/erb_partial.rb +1 -1
  13. data/lib/rdoc/erbio.rb +2 -2
  14. data/lib/rdoc/generator/darkfish.rb +9 -9
  15. data/lib/rdoc/generator/pot.rb +3 -3
  16. data/lib/rdoc/generator/template/darkfish/_head.rhtml +9 -7
  17. data/lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml +2 -2
  18. data/lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml +2 -2
  19. data/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml +7 -7
  20. data/lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml +2 -2
  21. data/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml +7 -7
  22. data/lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml +6 -6
  23. data/lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml +5 -5
  24. data/lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml +5 -5
  25. data/lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml +5 -5
  26. data/lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml +4 -4
  27. data/lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml +4 -4
  28. data/lib/rdoc/generator/template/darkfish/class.rhtml +44 -44
  29. data/lib/rdoc/generator/template/darkfish/css/rdoc.css +35 -6
  30. data/lib/rdoc/generator/template/darkfish/index.rhtml +3 -4
  31. data/lib/rdoc/generator/template/darkfish/js/darkfish.js +22 -99
  32. data/lib/rdoc/generator/template/darkfish/js/search.js +32 -31
  33. data/lib/rdoc/generator/template/darkfish/servlet_root.rhtml +15 -16
  34. data/lib/rdoc/generator/template/darkfish/table_of_contents.rhtml +16 -16
  35. data/lib/rdoc/generator/template/json_index/js/navigation.js +4 -40
  36. data/lib/rdoc/generator/template/json_index/js/searcher.js +6 -6
  37. data/lib/rdoc/i18n.rb +1 -1
  38. data/lib/rdoc/markdown.kpeg +1 -1
  39. data/lib/rdoc/markdown.rb +16287 -0
  40. data/lib/rdoc/markdown/literals.rb +417 -0
  41. data/lib/rdoc/markup.rb +0 -2
  42. data/lib/rdoc/markup/formatter.rb +1 -1
  43. data/lib/rdoc/markup/parser.rb +58 -42
  44. data/lib/rdoc/markup/pre_process.rb +1 -1
  45. data/lib/rdoc/markup/regexp_handling.rb +41 -0
  46. data/lib/rdoc/markup/to_html.rb +19 -6
  47. data/lib/rdoc/markup/to_html_crossref.rb +18 -6
  48. data/lib/rdoc/options.rb +23 -5
  49. data/lib/rdoc/parser.rb +7 -7
  50. data/lib/rdoc/parser/c.rb +139 -183
  51. data/lib/rdoc/parser/ripper_state_lex.rb +2 -1
  52. data/lib/rdoc/parser/ruby.rb +18 -8
  53. data/lib/rdoc/rd/block_parser.rb +1056 -0
  54. data/lib/rdoc/rd/inline_parser.rb +1208 -0
  55. data/lib/rdoc/rdoc.rb +26 -20
  56. data/lib/rdoc/ri/driver.rb +9 -5
  57. data/lib/rdoc/ri/paths.rb +3 -17
  58. data/lib/rdoc/ri/task.rb +1 -1
  59. data/lib/rdoc/rubygems_hook.rb +2 -2
  60. data/lib/rdoc/servlet.rb +16 -8
  61. data/lib/rdoc/store.rb +6 -14
  62. data/lib/rdoc/task.rb +1 -1
  63. data/lib/rdoc/text.rb +8 -2
  64. data/lib/rdoc/token_stream.rb +8 -3
  65. data/lib/rdoc/tom_doc.rb +6 -7
  66. data/lib/rdoc/version.rb +1 -1
  67. data/man/ri.1 +247 -0
  68. data/rdoc.gemspec +194 -10
  69. metadata +10 -86
  70. data/.document +0 -5
  71. data/.gitignore +0 -14
  72. data/.travis.yml +0 -21
  73. data/appveyor.yml +0 -36
  74. data/lib/rdoc/generator/template/darkfish/js/jquery.js +0 -4
  75. data/lib/rdoc/markup/formatter_test_case.rb +0 -764
  76. data/lib/rdoc/markup/text_formatter_test_case.rb +0 -115
@@ -31,8 +31,199 @@ RDoc includes the +rdoc+ and +ri+ tools for generating and displaying documentat
31
31
  s.bindir = "exe"
32
32
  s.executables = ["rdoc", "ri"]
33
33
  s.require_paths = ["lib"]
34
- # for ruby core repository. It was generated by `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
35
- s.files = [".document", ".gitignore", ".travis.yml", "CONTRIBUTING.rdoc", "CVE-2013-0256.rdoc", "ExampleMarkdown.md", "ExampleRDoc.rdoc", "Gemfile", "History.rdoc", "LEGAL.rdoc", "LICENSE.rdoc", "README.rdoc", "RI.rdoc", "Rakefile", "TODO.rdoc", "appveyor.yml", "bin/console", "bin/setup", "exe/rdoc", "exe/ri", "lib/rdoc.rb", "lib/rdoc/alias.rb", "lib/rdoc/anon_class.rb", "lib/rdoc/any_method.rb", "lib/rdoc/attr.rb", "lib/rdoc/class_module.rb", "lib/rdoc/code_object.rb", "lib/rdoc/code_objects.rb", "lib/rdoc/comment.rb", "lib/rdoc/constant.rb", "lib/rdoc/context.rb", "lib/rdoc/context/section.rb", "lib/rdoc/cross_reference.rb", "lib/rdoc/encoding.rb", "lib/rdoc/erb_partial.rb", "lib/rdoc/erbio.rb", "lib/rdoc/extend.rb", "lib/rdoc/generator.rb", "lib/rdoc/generator/darkfish.rb", "lib/rdoc/generator/json_index.rb", "lib/rdoc/generator/markup.rb", "lib/rdoc/generator/pot.rb", "lib/rdoc/generator/pot/message_extractor.rb", "lib/rdoc/generator/pot/po.rb", "lib/rdoc/generator/pot/po_entry.rb", "lib/rdoc/generator/ri.rb", "lib/rdoc/generator/template/darkfish/.document", "lib/rdoc/generator/template/darkfish/_footer.rhtml", "lib/rdoc/generator/template/darkfish/_head.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml", "lib/rdoc/generator/template/darkfish/class.rhtml", "lib/rdoc/generator/template/darkfish/css/fonts.css", "lib/rdoc/generator/template/darkfish/css/rdoc.css", "lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf", "lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf", "lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf", "lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf", "lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf", "lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf", "lib/rdoc/generator/template/darkfish/images/add.png", "lib/rdoc/generator/template/darkfish/images/arrow_up.png", "lib/rdoc/generator/template/darkfish/images/brick.png", "lib/rdoc/generator/template/darkfish/images/brick_link.png", "lib/rdoc/generator/template/darkfish/images/bug.png", "lib/rdoc/generator/template/darkfish/images/bullet_black.png", "lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png", "lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png", "lib/rdoc/generator/template/darkfish/images/date.png", "lib/rdoc/generator/template/darkfish/images/delete.png", "lib/rdoc/generator/template/darkfish/images/find.png", "lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif", "lib/rdoc/generator/template/darkfish/images/macFFBgHack.png", "lib/rdoc/generator/template/darkfish/images/package.png", "lib/rdoc/generator/template/darkfish/images/page_green.png", "lib/rdoc/generator/template/darkfish/images/page_white_text.png", "lib/rdoc/generator/template/darkfish/images/page_white_width.png", "lib/rdoc/generator/template/darkfish/images/plugin.png", "lib/rdoc/generator/template/darkfish/images/ruby.png", "lib/rdoc/generator/template/darkfish/images/tag_blue.png", "lib/rdoc/generator/template/darkfish/images/tag_green.png", "lib/rdoc/generator/template/darkfish/images/transparent.png", "lib/rdoc/generator/template/darkfish/images/wrench.png", "lib/rdoc/generator/template/darkfish/images/wrench_orange.png", "lib/rdoc/generator/template/darkfish/images/zoom.png", "lib/rdoc/generator/template/darkfish/index.rhtml", "lib/rdoc/generator/template/darkfish/js/darkfish.js", "lib/rdoc/generator/template/darkfish/js/jquery.js", "lib/rdoc/generator/template/darkfish/js/search.js", "lib/rdoc/generator/template/darkfish/page.rhtml", "lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml", "lib/rdoc/generator/template/darkfish/servlet_root.rhtml", "lib/rdoc/generator/template/darkfish/table_of_contents.rhtml", "lib/rdoc/generator/template/json_index/.document", "lib/rdoc/generator/template/json_index/js/navigation.js", "lib/rdoc/generator/template/json_index/js/searcher.js", "lib/rdoc/ghost_method.rb", "lib/rdoc/i18n.rb", "lib/rdoc/i18n/locale.rb", "lib/rdoc/i18n/text.rb", "lib/rdoc/include.rb", "lib/rdoc/known_classes.rb", "lib/rdoc/markdown.kpeg", "lib/rdoc/markdown/entities.rb", "lib/rdoc/markdown/literals.kpeg", "lib/rdoc/markup.rb", "lib/rdoc/markup/attr_changer.rb", "lib/rdoc/markup/attr_span.rb", "lib/rdoc/markup/attribute_manager.rb", "lib/rdoc/markup/attributes.rb", "lib/rdoc/markup/blank_line.rb", "lib/rdoc/markup/block_quote.rb", "lib/rdoc/markup/document.rb", "lib/rdoc/markup/formatter.rb", "lib/rdoc/markup/formatter_test_case.rb", "lib/rdoc/markup/hard_break.rb", "lib/rdoc/markup/heading.rb", "lib/rdoc/markup/include.rb", "lib/rdoc/markup/indented_paragraph.rb", "lib/rdoc/markup/list.rb", "lib/rdoc/markup/list_item.rb", "lib/rdoc/markup/paragraph.rb", "lib/rdoc/markup/parser.rb", "lib/rdoc/markup/pre_process.rb", "lib/rdoc/markup/raw.rb", "lib/rdoc/markup/rule.rb", "lib/rdoc/markup/text_formatter_test_case.rb", "lib/rdoc/markup/to_ansi.rb", "lib/rdoc/markup/to_bs.rb", "lib/rdoc/markup/to_html.rb", "lib/rdoc/markup/to_html_crossref.rb", "lib/rdoc/markup/to_html_snippet.rb", "lib/rdoc/markup/to_joined_paragraph.rb", "lib/rdoc/markup/to_label.rb", "lib/rdoc/markup/to_markdown.rb", "lib/rdoc/markup/to_rdoc.rb", "lib/rdoc/markup/to_table_of_contents.rb", "lib/rdoc/markup/to_test.rb", "lib/rdoc/markup/to_tt_only.rb", "lib/rdoc/markup/verbatim.rb", "lib/rdoc/meta_method.rb", "lib/rdoc/method_attr.rb", "lib/rdoc/mixin.rb", "lib/rdoc/normal_class.rb", "lib/rdoc/normal_module.rb", "lib/rdoc/options.rb", "lib/rdoc/parser.rb", "lib/rdoc/parser/c.rb", "lib/rdoc/parser/changelog.rb", "lib/rdoc/parser/markdown.rb", "lib/rdoc/parser/rd.rb", "lib/rdoc/parser/ripper_state_lex.rb", "lib/rdoc/parser/ruby.rb", "lib/rdoc/parser/ruby_tools.rb", "lib/rdoc/parser/simple.rb", "lib/rdoc/parser/text.rb", "lib/rdoc/rd.rb", "lib/rdoc/rd/block_parser.ry", "lib/rdoc/rd/inline.rb", "lib/rdoc/rd/inline_parser.ry", "lib/rdoc/rdoc.rb", "lib/rdoc/require.rb", "lib/rdoc/ri.rb", "lib/rdoc/ri/driver.rb", "lib/rdoc/ri/formatter.rb", "lib/rdoc/ri/paths.rb", "lib/rdoc/ri/store.rb", "lib/rdoc/ri/task.rb", "lib/rdoc/rubygems_hook.rb", "lib/rdoc/servlet.rb", "lib/rdoc/single_class.rb", "lib/rdoc/stats.rb", "lib/rdoc/stats/normal.rb", "lib/rdoc/stats/quiet.rb", "lib/rdoc/stats/verbose.rb", "lib/rdoc/store.rb", "lib/rdoc/task.rb", "lib/rdoc/text.rb", "lib/rdoc/token_stream.rb", "lib/rdoc/tom_doc.rb", "lib/rdoc/top_level.rb", "lib/rdoc/version.rb", "rdoc.gemspec"]
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
+ ]
36
227
  # files from .gitignore
37
228
  s.files << "lib/rdoc/rd/block_parser.rb" << "lib/rdoc/rd/inline_parser.rb" << "lib/rdoc/markdown.rb" << "lib/rdoc/markdown/literals.rb"
38
229
 
@@ -50,13 +241,6 @@ RDoc includes the +rdoc+ and +ri+ tools for generating and displaying documentat
50
241
  TODO.rdoc
51
242
  ]
52
243
 
53
- s.required_ruby_version = Gem::Requirement.new(">= 2.2.2")
54
- s.rubygems_version = "2.5.2"
244
+ s.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
55
245
  s.required_rubygems_version = Gem::Requirement.new(">= 2.2")
56
-
57
- s.add_development_dependency("rake")
58
- s.add_development_dependency("racc", "> 1.4.10")
59
- s.add_development_dependency("kpeg")
60
- s.add_development_dependency("minitest", "~> 5")
61
- s.add_development_dependency("rubocop")
62
246
  end
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: 6.1.0
4
+ version: 6.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Hodel
@@ -11,81 +11,11 @@ authors:
11
11
  - Zachary Scott
12
12
  - Hiroshi SHIBATA
13
13
  - ITOYANAGI Sakura
14
- autorequire:
14
+ autorequire:
15
15
  bindir: exe
16
16
  cert_chain: []
17
- date: 2018-12-23 00:00:00.000000000 Z
18
- dependencies:
19
- - !ruby/object:Gem::Dependency
20
- name: rake
21
- requirement: !ruby/object:Gem::Requirement
22
- requirements:
23
- - - ">="
24
- - !ruby/object:Gem::Version
25
- version: '0'
26
- type: :development
27
- prerelease: false
28
- version_requirements: !ruby/object:Gem::Requirement
29
- requirements:
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- version: '0'
33
- - !ruby/object:Gem::Dependency
34
- name: racc
35
- requirement: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - ">"
38
- - !ruby/object:Gem::Version
39
- version: 1.4.10
40
- type: :development
41
- prerelease: false
42
- version_requirements: !ruby/object:Gem::Requirement
43
- requirements:
44
- - - ">"
45
- - !ruby/object:Gem::Version
46
- version: 1.4.10
47
- - !ruby/object:Gem::Dependency
48
- name: kpeg
49
- requirement: !ruby/object:Gem::Requirement
50
- requirements:
51
- - - ">="
52
- - !ruby/object:Gem::Version
53
- version: '0'
54
- type: :development
55
- prerelease: false
56
- version_requirements: !ruby/object:Gem::Requirement
57
- requirements:
58
- - - ">="
59
- - !ruby/object:Gem::Version
60
- version: '0'
61
- - !ruby/object:Gem::Dependency
62
- name: minitest
63
- requirement: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - "~>"
66
- - !ruby/object:Gem::Version
67
- version: '5'
68
- type: :development
69
- prerelease: false
70
- version_requirements: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - "~>"
73
- - !ruby/object:Gem::Version
74
- version: '5'
75
- - !ruby/object:Gem::Dependency
76
- name: rubocop
77
- requirement: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - ">="
80
- - !ruby/object:Gem::Version
81
- version: '0'
82
- type: :development
83
- prerelease: false
84
- version_requirements: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - ">="
87
- - !ruby/object:Gem::Version
88
- version: '0'
17
+ date: 2020-12-21 00:00:00.000000000 Z
18
+ dependencies: []
89
19
  description: |
90
20
  RDoc produces HTML and command-line documentation for Ruby projects.
91
21
  RDoc includes the +rdoc+ and +ri+ tools for generating and displaying documentation from the command-line.
@@ -113,9 +43,6 @@ extra_rdoc_files:
113
43
  - RI.rdoc
114
44
  - TODO.rdoc
115
45
  files:
116
- - ".document"
117
- - ".gitignore"
118
- - ".travis.yml"
119
46
  - CONTRIBUTING.rdoc
120
47
  - CVE-2013-0256.rdoc
121
48
  - ExampleMarkdown.md
@@ -128,7 +55,6 @@ files:
128
55
  - RI.rdoc
129
56
  - Rakefile
130
57
  - TODO.rdoc
131
- - appveyor.yml
132
58
  - bin/console
133
59
  - bin/setup
134
60
  - exe/rdoc
@@ -211,7 +137,6 @@ files:
211
137
  - lib/rdoc/generator/template/darkfish/images/zoom.png
212
138
  - lib/rdoc/generator/template/darkfish/index.rhtml
213
139
  - lib/rdoc/generator/template/darkfish/js/darkfish.js
214
- - lib/rdoc/generator/template/darkfish/js/jquery.js
215
140
  - lib/rdoc/generator/template/darkfish/js/search.js
216
141
  - lib/rdoc/generator/template/darkfish/page.rhtml
217
142
  - lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml
@@ -240,7 +165,6 @@ files:
240
165
  - lib/rdoc/markup/block_quote.rb
241
166
  - lib/rdoc/markup/document.rb
242
167
  - lib/rdoc/markup/formatter.rb
243
- - lib/rdoc/markup/formatter_test_case.rb
244
168
  - lib/rdoc/markup/hard_break.rb
245
169
  - lib/rdoc/markup/heading.rb
246
170
  - lib/rdoc/markup/include.rb
@@ -251,8 +175,8 @@ files:
251
175
  - lib/rdoc/markup/parser.rb
252
176
  - lib/rdoc/markup/pre_process.rb
253
177
  - lib/rdoc/markup/raw.rb
178
+ - lib/rdoc/markup/regexp_handling.rb
254
179
  - lib/rdoc/markup/rule.rb
255
- - lib/rdoc/markup/text_formatter_test_case.rb
256
180
  - lib/rdoc/markup/to_ansi.rb
257
181
  - lib/rdoc/markup/to_bs.rb
258
182
  - lib/rdoc/markup/to_html.rb
@@ -310,12 +234,13 @@ files:
310
234
  - lib/rdoc/tom_doc.rb
311
235
  - lib/rdoc/top_level.rb
312
236
  - lib/rdoc/version.rb
237
+ - man/ri.1
313
238
  - rdoc.gemspec
314
239
  homepage: https://ruby.github.io/rdoc
315
240
  licenses:
316
241
  - Ruby
317
242
  metadata: {}
318
- post_install_message:
243
+ post_install_message:
319
244
  rdoc_options:
320
245
  - "--main"
321
246
  - README.rdoc
@@ -325,16 +250,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
325
250
  requirements:
326
251
  - - ">="
327
252
  - !ruby/object:Gem::Version
328
- version: 2.2.2
253
+ version: 2.4.0
329
254
  required_rubygems_version: !ruby/object:Gem::Requirement
330
255
  requirements:
331
256
  - - ">="
332
257
  - !ruby/object:Gem::Version
333
258
  version: '2.2'
334
259
  requirements: []
335
- rubyforge_project:
336
- rubygems_version: 2.7.6
337
- signing_key:
260
+ rubygems_version: 3.2.2
261
+ signing_key:
338
262
  specification_version: 4
339
263
  summary: RDoc produces HTML and command-line documentation for Ruby projects
340
264
  test_files: []
data/.document DELETED
@@ -1,5 +0,0 @@
1
- History.txt
2
- LICENSE.txt
3
- README.txt
4
- RI.txt
5
- lib
data/.gitignore DELETED
@@ -1,14 +0,0 @@
1
- *.rbc
2
- *.swp
3
- .DS_Store
4
- /.rdoc
5
- /.rvmrc
6
- /TAGS
7
- /html
8
- /lib/rdoc/rd/block_parser.rb
9
- /lib/rdoc/rd/inline_parser.rb
10
- /lib/rdoc/markdown.rb
11
- /lib/rdoc/markdown/literals.rb
12
- /pkg
13
- /tmp
14
- Gemfile.lock
@@ -1,21 +0,0 @@
1
- ---
2
- before_install:
3
- - gem update --system
4
- - gem update bundler
5
- language: ruby
6
- rvm:
7
- - 2.3.8
8
- - 2.4.5
9
- - 2.5.3
10
- - ruby-head
11
- - jruby-9.1.17.0
12
- - jruby-9.2.4.1
13
- env:
14
- global:
15
- NOBENCHMARK=1
16
- script: rake
17
- matrix:
18
- allow_failures:
19
- - rvm: ruby-head
20
- - rvm: jruby-9.1.17.0
21
- - rvm: jruby-9.2.4.1
@@ -1,36 +0,0 @@
1
- ---
2
- init:
3
- # Set UTF-8 to use Unicode property because the defualt encoding on AppVeyor is Encoding::IBM437
4
- - set RUBYOPT=-EUTF-8
5
- # To avoid duplicated executables in PATH, see https://github.com/ruby/spec/pull/468
6
- - set PATH=C:\ruby%RUBY_VERSION%\bin;C:\msys64\usr\bin;C:\Program Files\7-Zip;C:\Program Files\AppVeyor\BuildAgent;C:\Program Files\Git\cmd;C:\Windows\system32;C:\Program Files;C:\Windows
7
- # Loads trunk build and updates MSYS2 / MinGW to most recent gcc compiler
8
- - if %ruby_version%==_trunk (
9
- appveyor DownloadFile %APPVEYOR_URL%/api/projects/MSP-Greg/ruby-loco/artifacts/ruby_trunk.7z -FileName C:\ruby_trunk.7z &
10
- 7z x C:\ruby_trunk.7z -oC:\ruby_trunk)
11
-
12
- install:
13
- - bundle install
14
-
15
- build: off
16
-
17
- test_script:
18
- - rake
19
-
20
- on_finish:
21
- - ruby -v
22
-
23
- deploy: off
24
-
25
- environment:
26
- NOBENCHMARK: 1
27
- matrix:
28
- - ruby_version: 22
29
- - ruby_version: 22-x64
30
- - ruby_version: 23
31
- - ruby_version: 23-x64
32
- - ruby_version: 24
33
- - ruby_version: 24-x64
34
- - ruby_version: 25
35
- - ruby_version: 25-x64
36
- - ruby_version: _trunk