rdoc 7.2.0 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +3 -4
- data/LICENSE.rdoc +4 -0
- data/README.md +43 -2
- data/doc/markup_reference/markdown.md +104 -3
- data/lib/rdoc/code_object/alias.rb +2 -8
- data/lib/rdoc/code_object/any_method.rb +11 -6
- data/lib/rdoc/code_object/attr.rb +11 -6
- data/lib/rdoc/code_object/class_module.rb +62 -32
- data/lib/rdoc/code_object/constant.rb +29 -3
- data/lib/rdoc/code_object/context/section.rb +4 -35
- data/lib/rdoc/code_object/context.rb +39 -34
- data/lib/rdoc/code_object/method_attr.rb +9 -15
- data/lib/rdoc/code_object/mixin.rb +2 -2
- data/lib/rdoc/code_object/top_level.rb +9 -3
- data/lib/rdoc/code_object.rb +2 -4
- data/lib/rdoc/comment.rb +0 -65
- data/lib/rdoc/cross_reference.rb +7 -27
- data/lib/rdoc/encoding.rb +3 -3
- data/lib/rdoc/generator/aliki.rb +17 -0
- data/lib/rdoc/generator/darkfish.rb +12 -6
- data/lib/rdoc/generator/json_index.rb +2 -2
- data/lib/rdoc/generator/markup.rb +56 -31
- data/lib/rdoc/generator/template/aliki/DESIGN.md +536 -0
- data/lib/rdoc/generator/template/aliki/_aside_toc.rhtml +1 -1
- data/lib/rdoc/generator/template/aliki/_head.rhtml +1 -1
- data/lib/rdoc/generator/template/aliki/_sidebar_extends.rhtml +8 -6
- data/lib/rdoc/generator/template/aliki/_sidebar_includes.rhtml +8 -6
- data/lib/rdoc/generator/template/aliki/_sidebar_installed.rhtml +1 -1
- data/lib/rdoc/generator/template/aliki/_sidebar_pages.rhtml +2 -2
- data/lib/rdoc/generator/template/aliki/_sidebar_sections.rhtml +1 -1
- data/lib/rdoc/generator/template/aliki/_sidebar_toggle.rhtml +1 -1
- data/lib/rdoc/generator/template/aliki/class.rhtml +56 -46
- data/lib/rdoc/generator/template/aliki/css/rdoc.css +337 -111
- data/lib/rdoc/generator/template/aliki/index.rhtml +1 -1
- data/lib/rdoc/generator/template/aliki/js/aliki.js +20 -18
- data/lib/rdoc/generator/template/aliki/page.rhtml +1 -1
- data/lib/rdoc/generator/template/aliki/servlet_not_found.rhtml +1 -1
- data/lib/rdoc/generator/template/aliki/servlet_root.rhtml +2 -2
- data/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml +8 -6
- data/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml +8 -6
- data/lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml +1 -1
- data/lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml +1 -1
- data/lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml +1 -1
- data/lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml +5 -5
- data/lib/rdoc/generator/template/darkfish/class.rhtml +18 -21
- data/lib/rdoc/generator/template/darkfish/css/rdoc.css +0 -1
- data/lib/rdoc/generator/template/darkfish/table_of_contents.rhtml +3 -3
- data/lib/rdoc/i18n/text.rb +3 -3
- data/lib/rdoc/markdown.kpeg +15 -10
- data/lib/rdoc/markdown.rb +289 -104
- data/lib/rdoc/markup/document.rb +2 -2
- data/lib/rdoc/markup/formatter.rb +24 -34
- data/lib/rdoc/markup/heading.rb +1 -4
- data/lib/rdoc/markup/indented_paragraph.rb +1 -1
- data/lib/rdoc/markup/list.rb +2 -2
- data/lib/rdoc/markup/list_item.rb +2 -2
- data/lib/rdoc/markup/pre_process.rb +0 -25
- data/lib/rdoc/markup/to_ansi.rb +1 -1
- data/lib/rdoc/markup/to_bs.rb +1 -1
- data/lib/rdoc/markup/to_html.rb +131 -53
- data/lib/rdoc/markup/to_html_crossref.rb +97 -71
- data/lib/rdoc/markup/to_html_snippet.rb +5 -5
- data/lib/rdoc/markup/to_joined_paragraph.rb +0 -5
- data/lib/rdoc/markup/to_label.rb +2 -2
- data/lib/rdoc/markup/to_markdown.rb +1 -1
- data/lib/rdoc/markup/to_rdoc.rb +2 -2
- data/lib/rdoc/markup/to_table_of_contents.rb +1 -1
- data/lib/rdoc/markup/to_tt_only.rb +0 -7
- data/lib/rdoc/markup/verbatim.rb +1 -1
- data/lib/rdoc/options.rb +36 -51
- data/lib/rdoc/parser/c.rb +7 -6
- data/lib/rdoc/parser/rbs.rb +275 -0
- data/lib/rdoc/parser/ruby.rb +954 -2066
- data/lib/rdoc/parser/ruby_colorizer.rb +253 -0
- data/lib/rdoc/parser.rb +3 -2
- data/lib/rdoc/rbs_helper.rb +186 -0
- data/lib/rdoc/rdoc.rb +196 -24
- data/lib/rdoc/ri/driver.rb +8 -2
- data/lib/rdoc/ri/paths.rb +1 -1
- data/lib/rdoc/{servlet.rb → ri/servlet.rb} +5 -5
- data/lib/rdoc/ri.rb +4 -3
- data/lib/rdoc/rubygems_hook.rb +11 -11
- data/lib/rdoc/server.rb +460 -0
- data/lib/rdoc/stats.rb +147 -124
- data/lib/rdoc/store.rb +212 -4
- data/lib/rdoc/task.rb +16 -15
- data/lib/rdoc/text.rb +1 -118
- data/lib/rdoc/token_stream.rb +11 -33
- data/lib/rdoc/version.rb +1 -1
- data/lib/rdoc.rb +35 -7
- data/lib/rubygems_plugin.rb +2 -11
- data/rdoc-logo.svg +43 -0
- data/rdoc.gemspec +6 -4
- metadata +35 -18
- data/lib/rdoc/code_object/anon_class.rb +0 -10
- data/lib/rdoc/code_object/ghost_method.rb +0 -6
- data/lib/rdoc/code_object/meta_method.rb +0 -6
- data/lib/rdoc/parser/prism_ruby.rb +0 -1112
- data/lib/rdoc/parser/ripper_state_lex.rb +0 -302
- data/lib/rdoc/parser/ruby_tools.rb +0 -163
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<%= render '_header.rhtml' %>
|
|
4
4
|
<%= render '_sidebar_toggle.rhtml' %>
|
|
5
5
|
|
|
6
|
-
<nav id="navigation" role="navigation" hidden>
|
|
6
|
+
<nav id="sidebar-navigation" role="navigation" hidden>
|
|
7
7
|
<%= render '_sidebar_pages.rhtml' %>
|
|
8
8
|
<%= render '_sidebar_sections.rhtml' %>
|
|
9
9
|
<%= render '_sidebar_ancestors.rhtml' %>
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<% if namespace[:self] %>
|
|
23
23
|
<span><%= namespace[:name] %></span>
|
|
24
24
|
<% else %>
|
|
25
|
-
<a href="<%= namespace[:path] %>"><%= namespace[:name] %></a><span>::</span>
|
|
25
|
+
<a href="<%= namespace[:path] %>"><%= namespace[:name] %></a><span class="separator">::</span>
|
|
26
26
|
<% end %>
|
|
27
27
|
</li>
|
|
28
28
|
<% end %>
|
|
@@ -30,8 +30,9 @@
|
|
|
30
30
|
<% end %>
|
|
31
31
|
|
|
32
32
|
<span id="<%= h klass.legacy_aref %>" class="legacy-anchor"></span>
|
|
33
|
-
<h1 id="<%= h klass.aref %>" class="anchor-link <%= klass.type %>">
|
|
34
|
-
|
|
33
|
+
<h1 id="<%= h klass.aref %>" class="anchor-link <%= klass.type %> page-title">
|
|
34
|
+
<span class="page-title-kind"><%= klass.type %></span>
|
|
35
|
+
<span class="page-title-name"><%= klass.full_name %></span>
|
|
35
36
|
</h1>
|
|
36
37
|
|
|
37
38
|
<section class="description">
|
|
@@ -41,7 +42,7 @@
|
|
|
41
42
|
<%- klass.each_section do |section, constants, attributes| %>
|
|
42
43
|
<span id="<%= section.legacy_aref %>" class="legacy-anchor"></span>
|
|
43
44
|
<section class="documentation-section anchor-link">
|
|
44
|
-
<%- if section.title
|
|
45
|
+
<%- if section.title %>
|
|
45
46
|
<header class="documentation-section-title">
|
|
46
47
|
<h2 id="<%= section.aref %>">
|
|
47
48
|
<a href="#<%= section.aref %>"><%= section.title %></a>
|
|
@@ -49,13 +50,13 @@
|
|
|
49
50
|
</header>
|
|
50
51
|
<%- end %>
|
|
51
52
|
|
|
52
|
-
<%- if section.comment
|
|
53
|
+
<%- if section.comment %>
|
|
53
54
|
<div>
|
|
54
55
|
<%= section.description %>
|
|
55
56
|
</div>
|
|
56
57
|
<%- end %>
|
|
57
58
|
|
|
58
|
-
<%- unless constants.empty?
|
|
59
|
+
<%- unless constants.empty? %>
|
|
59
60
|
<section class="constants-list">
|
|
60
61
|
<header>
|
|
61
62
|
<h3 id="<%= section.aref %>-constants"><a href="#<%= section.aref %>-constants">Constants</a></h3>
|
|
@@ -63,9 +64,9 @@
|
|
|
63
64
|
<dl>
|
|
64
65
|
<%- constants.each do |const| %>
|
|
65
66
|
<dt id="<%= const.name %>"><%= const.name %></dt>
|
|
66
|
-
<%- if const.comment
|
|
67
|
+
<%- if const.comment %>
|
|
67
68
|
<dd>
|
|
68
|
-
<%- if const.mixin_from
|
|
69
|
+
<%- if const.mixin_from %>
|
|
69
70
|
<div class="mixin-from">
|
|
70
71
|
Included from <a href="<%= klass.aref_to(const.mixin_from.path) %>"><%= const.mixin_from.full_name %></a>
|
|
71
72
|
</div>
|
|
@@ -80,7 +81,7 @@
|
|
|
80
81
|
</section>
|
|
81
82
|
<%- end %>
|
|
82
83
|
|
|
83
|
-
<%- unless attributes.empty?
|
|
84
|
+
<%- unless attributes.empty? %>
|
|
84
85
|
<section class="attribute-method-details method-section">
|
|
85
86
|
<header>
|
|
86
87
|
<h3 id="<%= section.aref %>-attributes"><a href="#<%= section.aref %>-attributes">Attributes</a></h3>
|
|
@@ -93,15 +94,18 @@
|
|
|
93
94
|
<span class="method-name"><%= h attrib.name %></span>
|
|
94
95
|
<span class="attribute-access-type">[<%= attrib.rw %>]</span>
|
|
95
96
|
</a>
|
|
97
|
+
<%- if (sig_html = type_signature_html(attrib, klass.path)) %>
|
|
98
|
+
<span class="method-type-signature"><code><%= sig_html %></code></span>
|
|
99
|
+
<%- end %>
|
|
96
100
|
</div>
|
|
97
101
|
|
|
98
102
|
<div class="method-description">
|
|
99
|
-
<%- if attrib.mixin_from
|
|
103
|
+
<%- if attrib.mixin_from %>
|
|
100
104
|
<div class="mixin-from">
|
|
101
105
|
<%= attrib.singleton ? "Extended" : "Included" %> from <a href="<%= klass.aref_to(attrib.mixin_from.path) %>"><%= attrib.mixin_from.full_name %></a>
|
|
102
106
|
</div>
|
|
103
107
|
<%- end %>
|
|
104
|
-
<%- if attrib.comment
|
|
108
|
+
<%- if attrib.comment %>
|
|
105
109
|
<%= attrib.description.strip %>
|
|
106
110
|
<%- else %>
|
|
107
111
|
<p class="missing-docs">(Not documented)</p>
|
|
@@ -124,70 +128,76 @@
|
|
|
124
128
|
<%- methods.each do |method| %>
|
|
125
129
|
<div id="<%= method.aref %>" class="method-detail anchor-link <%= method.is_alias_for ? "method-alias" : '' %>">
|
|
126
130
|
<div class="method-header">
|
|
127
|
-
|
|
128
|
-
<%- call_seq
|
|
131
|
+
<div class="method-heading-group">
|
|
132
|
+
<%- if (call_seq = method.call_seq) %>
|
|
133
|
+
<%- call_seq.strip.split("\n").each_with_index do |call_seq, i| %>
|
|
134
|
+
<div class="method-heading">
|
|
135
|
+
<a href="#<%= method.aref %>" title="Link to this method">
|
|
136
|
+
<span class="method-callseq">
|
|
137
|
+
<%= h(call_seq.strip.
|
|
138
|
+
gsub( /^\w+\./m, '')).
|
|
139
|
+
gsub(/(.*)[-=]>/, '\1→') %>
|
|
140
|
+
</span>
|
|
141
|
+
</a>
|
|
142
|
+
</div>
|
|
143
|
+
<%- end %>
|
|
144
|
+
<%- elsif method.has_call_seq? %>
|
|
145
|
+
<div class="method-heading">
|
|
146
|
+
<a href="#<%= method.aref %>" title="Link to this method">
|
|
147
|
+
<span class="method-name"><%= h method.name %></span>
|
|
148
|
+
</a>
|
|
149
|
+
</div>
|
|
150
|
+
<%- else %>
|
|
129
151
|
<div class="method-heading">
|
|
130
152
|
<a href="#<%= method.aref %>" title="Link to this method">
|
|
131
|
-
<span class="method-
|
|
132
|
-
|
|
133
|
-
gsub( /^\w+\./m, '')).
|
|
134
|
-
gsub(/(.*)[-=]>/, '\1→') %>
|
|
135
|
-
</span>
|
|
153
|
+
<span class="method-name"><%= h method.name %></span>
|
|
154
|
+
<span class="method-args"><%= h method.param_seq %></span>
|
|
136
155
|
</a>
|
|
137
156
|
</div>
|
|
138
157
|
<%- end %>
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
<%-
|
|
146
|
-
<div class="method-
|
|
147
|
-
<
|
|
148
|
-
<span class="method-
|
|
149
|
-
|
|
150
|
-
</a>
|
|
158
|
+
|
|
159
|
+
<%- if (sig_html = type_signature_html(method, klass.path)) %>
|
|
160
|
+
<pre class="method-type-signature"><code><%= sig_html %></code></pre>
|
|
161
|
+
<%- end %>
|
|
162
|
+
</div>
|
|
163
|
+
|
|
164
|
+
<%- if method.token_stream %>
|
|
165
|
+
<div class="method-controls">
|
|
166
|
+
<details class="method-source-toggle">
|
|
167
|
+
<summary><span class="method-source-icon" aria-hidden="true">{}</span> Source</summary>
|
|
168
|
+
</details>
|
|
151
169
|
</div>
|
|
152
170
|
<%- end %>
|
|
153
171
|
</div>
|
|
154
172
|
|
|
155
173
|
<%- if method.token_stream %>
|
|
156
|
-
<div class="method-controls">
|
|
157
|
-
<details class="method-source-toggle">
|
|
158
|
-
<summary>Source</summary>
|
|
159
|
-
</details>
|
|
160
|
-
</div>
|
|
161
174
|
<div class="method-source-code" id="<%= method.html_name %>-source">
|
|
162
175
|
<pre class="<%= method.source_language %>"><%= method.markup_code %></pre>
|
|
163
176
|
</div>
|
|
164
177
|
<%- end %>
|
|
165
178
|
|
|
166
|
-
<%- unless method.skip_description?
|
|
179
|
+
<%- unless method.skip_description? %>
|
|
167
180
|
<div class="method-description">
|
|
168
|
-
<%- if method.mixin_from
|
|
181
|
+
<%- if method.mixin_from %>
|
|
169
182
|
<div class="mixin-from">
|
|
170
183
|
<%= method.singleton ? "Extended" : "Included" %> from <a href="<%= klass.aref_to(method.mixin_from.path) %>"><%= method.mixin_from.full_name %></a>
|
|
171
184
|
</div>
|
|
172
185
|
<%- end %>
|
|
173
|
-
<%- if method.comment
|
|
186
|
+
<%- if method.comment %>
|
|
174
187
|
<%= method.description.strip %>
|
|
175
188
|
<%- else %>
|
|
176
189
|
<p class="missing-docs">(Not documented)</p>
|
|
177
190
|
<%- end %>
|
|
178
|
-
<%- if method.calls_super
|
|
191
|
+
<%- if method.calls_super %>
|
|
179
192
|
<div class="method-calls-super">
|
|
180
193
|
Calls superclass method
|
|
181
|
-
<%=
|
|
182
|
-
method.superclass_method ?
|
|
183
|
-
method.formatter.link(method.superclass_method.full_name, method.superclass_method.full_name) : nil
|
|
184
|
-
%>
|
|
194
|
+
<%= method.superclass_method_link %>
|
|
185
195
|
</div>
|
|
186
196
|
<%- end %>
|
|
187
197
|
</div>
|
|
188
198
|
<%- end %>
|
|
189
199
|
|
|
190
|
-
<%- unless method.aliases.empty?
|
|
200
|
+
<%- unless method.aliases.empty? %>
|
|
191
201
|
<div class="aliases">
|
|
192
202
|
Also aliased as: <%= method.aliases.map do |aka|
|
|
193
203
|
if aka.parent then # HACK lib/rexml/encodings
|
|
@@ -199,7 +209,7 @@
|
|
|
199
209
|
</div>
|
|
200
210
|
<%- end %>
|
|
201
211
|
|
|
202
|
-
<%- if method.is_alias_for
|
|
212
|
+
<%- if method.is_alias_for %>
|
|
203
213
|
<div class="aliases">
|
|
204
214
|
Alias for: <a href="<%= klass.aref_to method.is_alias_for.path %>"><%= h method.is_alias_for.name %></a>
|
|
205
215
|
</div>
|