bitclust-core 1.2.6 → 1.6.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/Gemfile +3 -0
- data/README.md +65 -0
- data/Rakefile +32 -0
- data/data/bitclust/catalog/ja_JP.UTF-8 +19 -1
- data/data/bitclust/searchpage/index.html +90 -0
- data/data/bitclust/template/class +69 -8
- data/data/bitclust/template/function +2 -2
- data/data/bitclust/template/layout +11 -3
- data/data/bitclust/template/method +2 -2
- data/data/bitclust/template/search +1 -1
- data/data/bitclust/template.epub/class +22 -1
- data/data/bitclust/template.epub/function +2 -2
- data/data/bitclust/template.epub/layout +1 -3
- data/data/bitclust/template.epub/method +2 -2
- data/data/bitclust/template.lillia/class +26 -5
- data/data/bitclust/template.lillia/layout +1 -3
- data/data/bitclust/template.lillia/method +2 -2
- data/data/bitclust/template.offline/class +49 -5
- data/data/bitclust/template.offline/function +2 -2
- data/data/bitclust/template.offline/layout +27 -3
- data/data/bitclust/template.offline/method +2 -2
- data/lib/bitclust/app.rb +17 -17
- data/lib/bitclust/capi_converter.rb +20 -0
- data/lib/bitclust/classentry.rb +68 -17
- data/lib/bitclust/compat.rb +3 -2
- data/lib/bitclust/completion.rb +59 -27
- data/lib/bitclust/crossrubyutils.rb +9 -5
- data/lib/bitclust/database.rb +29 -8
- data/lib/bitclust/doc_converter.rb +63 -0
- data/lib/bitclust/docentry.rb +2 -1
- data/lib/bitclust/entity_splitter.rb +221 -0
- data/lib/bitclust/entry.rb +48 -7
- data/lib/bitclust/exception.rb +1 -0
- data/lib/bitclust/functiondatabase.rb +14 -1
- data/lib/bitclust/functionentry.rb +6 -1
- data/lib/bitclust/functionreferenceparser.rb +5 -4
- data/lib/bitclust/generators/epub.rb +11 -3
- data/lib/bitclust/htmlutils.rb +2 -1
- data/lib/bitclust/include_graph.rb +375 -0
- data/lib/bitclust/include_pruner.rb +144 -0
- data/lib/bitclust/interface.rb +2 -1
- data/lib/bitclust/libraryentry.rb +9 -7
- data/lib/bitclust/lineinput.rb +8 -5
- data/lib/bitclust/link_checker.rb +179 -0
- data/lib/bitclust/markdown_bridge.rb +186 -0
- data/lib/bitclust/markdown_orchestrator.rb +267 -0
- data/lib/bitclust/markdown_to_rrd.rb +824 -0
- data/lib/bitclust/markdown_tree.rb +217 -0
- data/lib/bitclust/mdcompiler.rb +883 -0
- data/lib/bitclust/mdparser.rb +347 -0
- data/lib/bitclust/messagecatalog.rb +4 -3
- data/lib/bitclust/method_since_calculator.rb +117 -0
- data/lib/bitclust/methoddatabase.rb +125 -14
- data/lib/bitclust/methodentry.rb +130 -7
- data/lib/bitclust/methodid.rb +13 -11
- data/lib/bitclust/methodsignature.rb +11 -4
- data/lib/bitclust/nameutils.rb +42 -22
- data/lib/bitclust/parseutils.rb +1 -0
- data/lib/bitclust/preprocessor.rb +70 -32
- data/lib/bitclust/progress_bar.rb +1 -0
- data/lib/bitclust/rdcompiler.rb +197 -96
- data/lib/bitclust/refsdatabase.rb +24 -8
- data/lib/bitclust/reloadable_request_handler.rb +72 -0
- data/lib/bitclust/requesthandler.rb +22 -16
- data/lib/bitclust/ridatabase.rb +11 -4
- data/lib/bitclust/rrd_to_markdown.rb +925 -0
- data/lib/bitclust/rrdparser.rb +197 -30
- data/lib/bitclust/runner.rb +18 -2
- data/lib/bitclust/screen.rb +81 -11
- data/lib/bitclust/search_index_generator.rb +288 -0
- data/lib/bitclust/searcher.rb +72 -22
- data/lib/bitclust/server.rb +6 -1
- data/lib/bitclust/silent_progress_bar.rb +1 -0
- data/lib/bitclust/simplesearcher.rb +25 -12
- data/lib/bitclust/subcommand.rb +8 -1
- data/lib/bitclust/subcommands/ancestors_command.rb +10 -2
- data/lib/bitclust/subcommands/checklink_command.rb +54 -0
- data/lib/bitclust/subcommands/chm_command.rb +16 -7
- data/lib/bitclust/subcommands/classes_command.rb +6 -0
- data/lib/bitclust/subcommands/epub_command.rb +1 -0
- data/lib/bitclust/subcommands/extract_command.rb +6 -0
- data/lib/bitclust/subcommands/htmlfile_command.rb +22 -7
- data/lib/bitclust/subcommands/init_command.rb +5 -1
- data/lib/bitclust/subcommands/list_command.rb +13 -4
- data/lib/bitclust/subcommands/lookup_command.rb +29 -9
- data/lib/bitclust/subcommands/methods_command.rb +11 -2
- data/lib/bitclust/subcommands/methodsince_command.rb +80 -0
- data/lib/bitclust/subcommands/preproc_command.rb +6 -0
- data/lib/bitclust/subcommands/property_command.rb +3 -1
- data/lib/bitclust/subcommands/query_command.rb +1 -0
- data/lib/bitclust/subcommands/searchpage_command.rb +102 -0
- data/lib/bitclust/subcommands/server_command.rb +16 -10
- data/lib/bitclust/subcommands/setup_command.rb +25 -10
- data/lib/bitclust/subcommands/statichtml_command.rb +132 -6
- data/lib/bitclust/subcommands/update_command.rb +111 -2
- data/lib/bitclust/syntax_highlighter.rb +52 -5
- data/lib/bitclust/textutils.rb +4 -3
- data/lib/bitclust/version.rb +2 -1
- data/lib/bitclust/version_badges.rb +90 -0
- data/lib/bitclust/whole_file_gate.rb +137 -0
- data/lib/bitclust.rb +1 -0
- data/test/test_app.rb +269 -0
- data/test/test_bitclust.rb +2 -0
- data/test/test_capi_converter.rb +91 -0
- data/test/test_class_screen.rb +413 -0
- data/test/test_copy_doc_md.rb +53 -0
- data/test/test_doc_converter.rb +78 -0
- data/test/test_entity_splitter.rb +231 -0
- data/test/test_entry.rb +207 -2
- data/test/test_eol_warning.rb +43 -0
- data/test/test_functionreferenceparser.rb +11 -0
- data/test/test_include_graph.rb +640 -0
- data/test/test_include_pruner.rb +133 -0
- data/test/test_link_checker.rb +114 -0
- data/test/test_lookup_command.rb +135 -0
- data/test/test_markdown_bridge.rb +217 -0
- data/test/test_markdown_orchestrator.rb +478 -0
- data/test/test_markdown_to_rrd.rb +757 -0
- data/test/test_markdown_tree.rb +369 -0
- data/test/test_mdcompiler.rb +1276 -0
- data/test/test_mdparser.rb +538 -0
- data/test/test_method_screen.rb +166 -0
- data/test/test_method_since_calculator.rb +290 -0
- data/test/test_methoddatabase.rb +16 -0
- data/test/test_methodentry.rb +328 -0
- data/test/test_methodsignature.rb +3 -1
- data/test/test_methodsince_command.rb +168 -0
- data/test/test_nameutils.rb +22 -0
- data/test/test_preprocessor.rb +215 -0
- data/test/test_rdcompiler.rb +429 -27
- data/test/test_refsdatabase.rb +32 -0
- data/test/test_rrd_to_markdown.rb +968 -0
- data/test/test_rrdparser.rb +295 -2
- data/test/test_run_ruby_wasm.rb +54 -0
- data/test/test_run_worker_prelude.rb +83 -0
- data/test/test_runner.rb +51 -0
- data/test/test_search_index_generator.rb +513 -0
- data/test/test_search_screen.rb +48 -0
- data/test/test_searcher.rb +153 -0
- data/test/test_searchpage_command.rb +167 -0
- data/test/test_simplesearcher.rb +28 -0
- data/test/test_statichtml_command.rb +204 -0
- data/test/test_syntax_highlighter.rb +60 -0
- data/test/test_whole_file_gate.rb +175 -0
- data/theme/default/js/NOTICE +42 -0
- data/theme/default/js/run-worker.js +111 -0
- data/theme/default/js/run.js +350 -0
- data/theme/default/js/search_controller.js +134 -0
- data/theme/default/js/search_init.js +176 -0
- data/theme/default/js/search_navigation.js +110 -0
- data/theme/default/js/search_page.js +202 -0
- data/theme/default/js/search_ranker.js +244 -0
- data/theme/default/script.js +91 -18
- data/theme/default/search.css +149 -0
- data/theme/default/style.css +193 -21
- data/theme/default/syntax-highlight.css +8 -0
- data/theme/lillia/style.css +45 -1
- metadata +178 -21
- data/README +0 -32
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bitclust-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- https://github.com/rurema
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: test-unit
|
|
@@ -66,6 +65,20 @@ dependencies:
|
|
|
66
65
|
- - ">="
|
|
67
66
|
- !ruby/object:Gem::Version
|
|
68
67
|
version: '0'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: rouge
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '0'
|
|
75
|
+
type: :runtime
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
69
82
|
- !ruby/object:Gem::Dependency
|
|
70
83
|
name: progressbar
|
|
71
84
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -86,6 +99,62 @@ dependencies:
|
|
|
86
99
|
- - "<"
|
|
87
100
|
- !ruby/object:Gem::Version
|
|
88
101
|
version: '2.0'
|
|
102
|
+
- !ruby/object:Gem::Dependency
|
|
103
|
+
name: webrick
|
|
104
|
+
requirement: !ruby/object:Gem::Requirement
|
|
105
|
+
requirements:
|
|
106
|
+
- - ">="
|
|
107
|
+
- !ruby/object:Gem::Version
|
|
108
|
+
version: '0'
|
|
109
|
+
type: :runtime
|
|
110
|
+
prerelease: false
|
|
111
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
112
|
+
requirements:
|
|
113
|
+
- - ">="
|
|
114
|
+
- !ruby/object:Gem::Version
|
|
115
|
+
version: '0'
|
|
116
|
+
- !ruby/object:Gem::Dependency
|
|
117
|
+
name: drb
|
|
118
|
+
requirement: !ruby/object:Gem::Requirement
|
|
119
|
+
requirements:
|
|
120
|
+
- - ">="
|
|
121
|
+
- !ruby/object:Gem::Version
|
|
122
|
+
version: '0'
|
|
123
|
+
type: :runtime
|
|
124
|
+
prerelease: false
|
|
125
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
126
|
+
requirements:
|
|
127
|
+
- - ">="
|
|
128
|
+
- !ruby/object:Gem::Version
|
|
129
|
+
version: '0'
|
|
130
|
+
- !ruby/object:Gem::Dependency
|
|
131
|
+
name: nkf
|
|
132
|
+
requirement: !ruby/object:Gem::Requirement
|
|
133
|
+
requirements:
|
|
134
|
+
- - ">="
|
|
135
|
+
- !ruby/object:Gem::Version
|
|
136
|
+
version: '0'
|
|
137
|
+
type: :runtime
|
|
138
|
+
prerelease: false
|
|
139
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
140
|
+
requirements:
|
|
141
|
+
- - ">="
|
|
142
|
+
- !ruby/object:Gem::Version
|
|
143
|
+
version: '0'
|
|
144
|
+
- !ruby/object:Gem::Dependency
|
|
145
|
+
name: json
|
|
146
|
+
requirement: !ruby/object:Gem::Requirement
|
|
147
|
+
requirements:
|
|
148
|
+
- - ">="
|
|
149
|
+
- !ruby/object:Gem::Version
|
|
150
|
+
version: '0'
|
|
151
|
+
type: :runtime
|
|
152
|
+
prerelease: false
|
|
153
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
154
|
+
requirements:
|
|
155
|
+
- - ">="
|
|
156
|
+
- !ruby/object:Gem::Version
|
|
157
|
+
version: '0'
|
|
89
158
|
description: |
|
|
90
159
|
Rurema is a Japanese ruby documentation project, and
|
|
91
160
|
bitclust is a rurema document processor.
|
|
@@ -98,10 +167,11 @@ extra_rdoc_files: []
|
|
|
98
167
|
files:
|
|
99
168
|
- ChangeLog
|
|
100
169
|
- Gemfile
|
|
101
|
-
- README
|
|
170
|
+
- README.md
|
|
102
171
|
- Rakefile
|
|
103
172
|
- bin/bitclust
|
|
104
173
|
- data/bitclust/catalog/ja_JP.UTF-8
|
|
174
|
+
- data/bitclust/searchpage/index.html
|
|
105
175
|
- data/bitclust/template.epub/class
|
|
106
176
|
- data/bitclust/template.epub/class-index
|
|
107
177
|
- data/bitclust/template.epub/container.xml
|
|
@@ -147,12 +217,15 @@ files:
|
|
|
147
217
|
- data/bitclust/template/search
|
|
148
218
|
- lib/bitclust.rb
|
|
149
219
|
- lib/bitclust/app.rb
|
|
220
|
+
- lib/bitclust/capi_converter.rb
|
|
150
221
|
- lib/bitclust/classentry.rb
|
|
151
222
|
- lib/bitclust/compat.rb
|
|
152
223
|
- lib/bitclust/completion.rb
|
|
153
224
|
- lib/bitclust/crossrubyutils.rb
|
|
154
225
|
- lib/bitclust/database.rb
|
|
226
|
+
- lib/bitclust/doc_converter.rb
|
|
155
227
|
- lib/bitclust/docentry.rb
|
|
228
|
+
- lib/bitclust/entity_splitter.rb
|
|
156
229
|
- lib/bitclust/entry.rb
|
|
157
230
|
- lib/bitclust/exception.rb
|
|
158
231
|
- lib/bitclust/functiondatabase.rb
|
|
@@ -160,10 +233,20 @@ files:
|
|
|
160
233
|
- lib/bitclust/functionreferenceparser.rb
|
|
161
234
|
- lib/bitclust/generators/epub.rb
|
|
162
235
|
- lib/bitclust/htmlutils.rb
|
|
236
|
+
- lib/bitclust/include_graph.rb
|
|
237
|
+
- lib/bitclust/include_pruner.rb
|
|
163
238
|
- lib/bitclust/interface.rb
|
|
164
239
|
- lib/bitclust/libraryentry.rb
|
|
165
240
|
- lib/bitclust/lineinput.rb
|
|
241
|
+
- lib/bitclust/link_checker.rb
|
|
242
|
+
- lib/bitclust/markdown_bridge.rb
|
|
243
|
+
- lib/bitclust/markdown_orchestrator.rb
|
|
244
|
+
- lib/bitclust/markdown_to_rrd.rb
|
|
245
|
+
- lib/bitclust/markdown_tree.rb
|
|
246
|
+
- lib/bitclust/mdcompiler.rb
|
|
247
|
+
- lib/bitclust/mdparser.rb
|
|
166
248
|
- lib/bitclust/messagecatalog.rb
|
|
249
|
+
- lib/bitclust/method_since_calculator.rb
|
|
167
250
|
- lib/bitclust/methoddatabase.rb
|
|
168
251
|
- lib/bitclust/methodentry.rb
|
|
169
252
|
- lib/bitclust/methodid.rb
|
|
@@ -174,17 +257,21 @@ files:
|
|
|
174
257
|
- lib/bitclust/progress_bar.rb
|
|
175
258
|
- lib/bitclust/rdcompiler.rb
|
|
176
259
|
- lib/bitclust/refsdatabase.rb
|
|
260
|
+
- lib/bitclust/reloadable_request_handler.rb
|
|
177
261
|
- lib/bitclust/requesthandler.rb
|
|
178
262
|
- lib/bitclust/ridatabase.rb
|
|
263
|
+
- lib/bitclust/rrd_to_markdown.rb
|
|
179
264
|
- lib/bitclust/rrdparser.rb
|
|
180
265
|
- lib/bitclust/runner.rb
|
|
181
266
|
- lib/bitclust/screen.rb
|
|
267
|
+
- lib/bitclust/search_index_generator.rb
|
|
182
268
|
- lib/bitclust/searcher.rb
|
|
183
269
|
- lib/bitclust/server.rb
|
|
184
270
|
- lib/bitclust/silent_progress_bar.rb
|
|
185
271
|
- lib/bitclust/simplesearcher.rb
|
|
186
272
|
- lib/bitclust/subcommand.rb
|
|
187
273
|
- lib/bitclust/subcommands/ancestors_command.rb
|
|
274
|
+
- lib/bitclust/subcommands/checklink_command.rb
|
|
188
275
|
- lib/bitclust/subcommands/chm_command.rb
|
|
189
276
|
- lib/bitclust/subcommands/classes_command.rb
|
|
190
277
|
- lib/bitclust/subcommands/epub_command.rb
|
|
@@ -194,9 +281,11 @@ files:
|
|
|
194
281
|
- lib/bitclust/subcommands/list_command.rb
|
|
195
282
|
- lib/bitclust/subcommands/lookup_command.rb
|
|
196
283
|
- lib/bitclust/subcommands/methods_command.rb
|
|
284
|
+
- lib/bitclust/subcommands/methodsince_command.rb
|
|
197
285
|
- lib/bitclust/subcommands/preproc_command.rb
|
|
198
286
|
- lib/bitclust/subcommands/property_command.rb
|
|
199
287
|
- lib/bitclust/subcommands/query_command.rb
|
|
288
|
+
- lib/bitclust/subcommands/searchpage_command.rb
|
|
200
289
|
- lib/bitclust/subcommands/server_command.rb
|
|
201
290
|
- lib/bitclust/subcommands/setup_command.rb
|
|
202
291
|
- lib/bitclust/subcommands/statichtml_command.rb
|
|
@@ -204,26 +293,67 @@ files:
|
|
|
204
293
|
- lib/bitclust/syntax_highlighter.rb
|
|
205
294
|
- lib/bitclust/textutils.rb
|
|
206
295
|
- lib/bitclust/version.rb
|
|
296
|
+
- lib/bitclust/version_badges.rb
|
|
297
|
+
- lib/bitclust/whole_file_gate.rb
|
|
207
298
|
- test/run_test.rb
|
|
299
|
+
- test/test_app.rb
|
|
208
300
|
- test/test_bitclust.rb
|
|
301
|
+
- test/test_capi_converter.rb
|
|
302
|
+
- test/test_class_screen.rb
|
|
303
|
+
- test/test_copy_doc_md.rb
|
|
304
|
+
- test/test_doc_converter.rb
|
|
305
|
+
- test/test_entity_splitter.rb
|
|
209
306
|
- test/test_entry.rb
|
|
307
|
+
- test/test_eol_warning.rb
|
|
210
308
|
- test/test_functiondatabase.rb
|
|
211
309
|
- test/test_functionreferenceparser.rb
|
|
310
|
+
- test/test_include_graph.rb
|
|
311
|
+
- test/test_include_pruner.rb
|
|
212
312
|
- test/test_libraryentry.rb
|
|
313
|
+
- test/test_link_checker.rb
|
|
314
|
+
- test/test_lookup_command.rb
|
|
315
|
+
- test/test_markdown_bridge.rb
|
|
316
|
+
- test/test_markdown_orchestrator.rb
|
|
317
|
+
- test/test_markdown_to_rrd.rb
|
|
318
|
+
- test/test_markdown_tree.rb
|
|
319
|
+
- test/test_mdcompiler.rb
|
|
320
|
+
- test/test_mdparser.rb
|
|
321
|
+
- test/test_method_screen.rb
|
|
322
|
+
- test/test_method_since_calculator.rb
|
|
213
323
|
- test/test_methoddatabase.rb
|
|
324
|
+
- test/test_methodentry.rb
|
|
214
325
|
- test/test_methodsignature.rb
|
|
326
|
+
- test/test_methodsince_command.rb
|
|
215
327
|
- test/test_nameutils.rb
|
|
216
328
|
- test/test_preprocessor.rb
|
|
217
329
|
- test/test_rdcompiler.rb
|
|
218
330
|
- test/test_refsdatabase.rb
|
|
331
|
+
- test/test_rrd_to_markdown.rb
|
|
219
332
|
- test/test_rrdparser.rb
|
|
333
|
+
- test/test_run_ruby_wasm.rb
|
|
334
|
+
- test/test_run_worker_prelude.rb
|
|
220
335
|
- test/test_runner.rb
|
|
336
|
+
- test/test_search_index_generator.rb
|
|
337
|
+
- test/test_search_screen.rb
|
|
338
|
+
- test/test_searcher.rb
|
|
339
|
+
- test/test_searchpage_command.rb
|
|
221
340
|
- test/test_simplesearcher.rb
|
|
341
|
+
- test/test_statichtml_command.rb
|
|
222
342
|
- test/test_syntax_highlighter.rb
|
|
343
|
+
- test/test_whole_file_gate.rb
|
|
223
344
|
- theme/default/images/external.png
|
|
345
|
+
- theme/default/js/NOTICE
|
|
346
|
+
- theme/default/js/run-worker.js
|
|
347
|
+
- theme/default/js/run.js
|
|
348
|
+
- theme/default/js/search_controller.js
|
|
349
|
+
- theme/default/js/search_init.js
|
|
350
|
+
- theme/default/js/search_navigation.js
|
|
351
|
+
- theme/default/js/search_page.js
|
|
352
|
+
- theme/default/js/search_ranker.js
|
|
224
353
|
- theme/default/rurema.png
|
|
225
354
|
- theme/default/rurema.svg
|
|
226
355
|
- theme/default/script.js
|
|
356
|
+
- theme/default/search.css
|
|
227
357
|
- theme/default/style.css
|
|
228
358
|
- theme/default/syntax-highlight.css
|
|
229
359
|
- theme/default/test.css
|
|
@@ -234,12 +364,10 @@ homepage: https://docs.ruby-lang.org/ja/
|
|
|
234
364
|
licenses: []
|
|
235
365
|
metadata:
|
|
236
366
|
bug_tracker_uri: https://github.com/rurema/bitclust/issues
|
|
237
|
-
documentation_uri: https://github.com/rurema/
|
|
367
|
+
documentation_uri: https://github.com/rurema/bitclust/blob/master/doc/usage.md
|
|
238
368
|
homepage_uri: https://docs.ruby-lang.org/ja/
|
|
239
369
|
source_code_uri: https://github.com/rurema/bitclust
|
|
240
370
|
github_repo: https://github.com/rurema/bitclust
|
|
241
|
-
wiki_uri: https://github.com/rurema/doctree/wiki
|
|
242
|
-
post_install_message:
|
|
243
371
|
rdoc_options: []
|
|
244
372
|
require_paths:
|
|
245
373
|
- lib
|
|
@@ -254,24 +382,53 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
254
382
|
- !ruby/object:Gem::Version
|
|
255
383
|
version: '0'
|
|
256
384
|
requirements: []
|
|
257
|
-
rubygems_version: 3.
|
|
258
|
-
signing_key:
|
|
385
|
+
rubygems_version: 3.6.9
|
|
259
386
|
specification_version: 4
|
|
260
387
|
summary: BitClust is a rurema document processor.
|
|
261
388
|
test_files:
|
|
262
|
-
- test/
|
|
263
|
-
- test/
|
|
389
|
+
- test/run_test.rb
|
|
390
|
+
- test/test_app.rb
|
|
391
|
+
- test/test_bitclust.rb
|
|
392
|
+
- test/test_capi_converter.rb
|
|
393
|
+
- test/test_class_screen.rb
|
|
394
|
+
- test/test_copy_doc_md.rb
|
|
395
|
+
- test/test_doc_converter.rb
|
|
396
|
+
- test/test_entity_splitter.rb
|
|
397
|
+
- test/test_entry.rb
|
|
398
|
+
- test/test_eol_warning.rb
|
|
264
399
|
- test/test_functiondatabase.rb
|
|
265
|
-
- test/
|
|
266
|
-
- test/
|
|
400
|
+
- test/test_functionreferenceparser.rb
|
|
401
|
+
- test/test_include_graph.rb
|
|
402
|
+
- test/test_include_pruner.rb
|
|
403
|
+
- test/test_libraryentry.rb
|
|
404
|
+
- test/test_link_checker.rb
|
|
405
|
+
- test/test_lookup_command.rb
|
|
406
|
+
- test/test_markdown_bridge.rb
|
|
407
|
+
- test/test_markdown_orchestrator.rb
|
|
408
|
+
- test/test_markdown_to_rrd.rb
|
|
409
|
+
- test/test_markdown_tree.rb
|
|
410
|
+
- test/test_mdcompiler.rb
|
|
411
|
+
- test/test_mdparser.rb
|
|
412
|
+
- test/test_method_screen.rb
|
|
413
|
+
- test/test_method_since_calculator.rb
|
|
414
|
+
- test/test_methoddatabase.rb
|
|
415
|
+
- test/test_methodentry.rb
|
|
416
|
+
- test/test_methodsignature.rb
|
|
417
|
+
- test/test_methodsince_command.rb
|
|
267
418
|
- test/test_nameutils.rb
|
|
268
|
-
- test/
|
|
269
|
-
- test/test_simplesearcher.rb
|
|
419
|
+
- test/test_preprocessor.rb
|
|
270
420
|
- test/test_rdcompiler.rb
|
|
271
|
-
- test/
|
|
272
|
-
- test/
|
|
421
|
+
- test/test_refsdatabase.rb
|
|
422
|
+
- test/test_rrd_to_markdown.rb
|
|
273
423
|
- test/test_rrdparser.rb
|
|
274
|
-
- test/
|
|
275
|
-
- test/
|
|
276
|
-
- test/
|
|
277
|
-
- test/
|
|
424
|
+
- test/test_run_ruby_wasm.rb
|
|
425
|
+
- test/test_run_worker_prelude.rb
|
|
426
|
+
- test/test_runner.rb
|
|
427
|
+
- test/test_search_index_generator.rb
|
|
428
|
+
- test/test_search_screen.rb
|
|
429
|
+
- test/test_searcher.rb
|
|
430
|
+
- test/test_searchpage_command.rb
|
|
431
|
+
- test/test_simplesearcher.rb
|
|
432
|
+
- test/test_statichtml_command.rb
|
|
433
|
+
- test/test_syntax_highlighter.rb
|
|
434
|
+
- test/test_whole_file_gate.rb
|
data/README
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
BitClust README
|
|
2
|
-
===============
|
|
3
|
-
|
|
4
|
-
About
|
|
5
|
-
-----
|
|
6
|
-
|
|
7
|
-
BitClust is the Next-Generation Ruby reference manual interface.
|
|
8
|
-
For more details, https://github.com/rurema/doctree/wiki/BitClust .
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
License
|
|
12
|
-
-------
|
|
13
|
-
|
|
14
|
-
Ruby License.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
Glossary
|
|
18
|
-
--------
|
|
19
|
-
|
|
20
|
-
* "entry"
|
|
21
|
-
* Each target of documentation.
|
|
22
|
-
* classes: Entry LibraryEntry ClassEntry MethodEntry DocEntry FunctionEntry
|
|
23
|
-
* "screen"
|
|
24
|
-
* View class.
|
|
25
|
-
* Used by BitClust server, chm_command, statichtml_command, etc.
|
|
26
|
-
* "singleton object"
|
|
27
|
-
* ARGF, main, etc.
|
|
28
|
-
* "BitClust server"
|
|
29
|
-
* HTTP server application to view refenence on browser.
|
|
30
|
-
* "Refe server"
|
|
31
|
-
* DRb server spawned by refe --server.
|
|
32
|
-
* Expose BitClust DB via DRuby.
|