mega-max-hub 0.0.1
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 +7 -0
- data/mega-max-hub.gemspec +11 -0
- data/rdoc-8.0.0/CONTRIBUTING.md +195 -0
- data/rdoc-8.0.0/CVE-2013-0256.rdoc +49 -0
- data/rdoc-8.0.0/History.rdoc +1668 -0
- data/rdoc-8.0.0/LEGAL.rdoc +56 -0
- data/rdoc-8.0.0/LICENSE.rdoc +63 -0
- data/rdoc-8.0.0/README.md +236 -0
- data/rdoc-8.0.0/RI.md +842 -0
- data/rdoc-8.0.0/TODO.rdoc +60 -0
- data/rdoc-8.0.0/doc/markup_reference/markdown.md +659 -0
- data/rdoc-8.0.0/doc/markup_reference/rdoc.rdoc +1169 -0
- data/rdoc-8.0.0/exe/rdoc +43 -0
- data/rdoc-8.0.0/exe/ri +12 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/alias.rb +98 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/any_method.rb +387 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/attr.rb +178 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/class_module.rb +969 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/constant.rb +221 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/context/section.rb +182 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/context.rb +1238 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/extend.rb +9 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/include.rb +9 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/method_attr.rb +417 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/mixin.rb +123 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/normal_class.rb +92 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/normal_module.rb +73 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/require.rb +51 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/single_class.rb +30 -0
- data/rdoc-8.0.0/lib/rdoc/code_object/top_level.rb +286 -0
- data/rdoc-8.0.0/lib/rdoc/code_object.rb +393 -0
- data/rdoc-8.0.0/lib/rdoc/code_objects.rb +5 -0
- data/rdoc-8.0.0/lib/rdoc/comment.rb +353 -0
- data/rdoc-8.0.0/lib/rdoc/cross_reference.rb +215 -0
- data/rdoc-8.0.0/lib/rdoc/encoding.rb +120 -0
- data/rdoc-8.0.0/lib/rdoc/erb_partial.rb +18 -0
- data/rdoc-8.0.0/lib/rdoc/erbio.rb +37 -0
- data/rdoc-8.0.0/lib/rdoc/generator/aliki.rb +200 -0
- data/rdoc-8.0.0/lib/rdoc/generator/darkfish.rb +824 -0
- data/rdoc-8.0.0/lib/rdoc/generator/json_index.rb +284 -0
- data/rdoc-8.0.0/lib/rdoc/generator/markup.rb +196 -0
- data/rdoc-8.0.0/lib/rdoc/generator/pot/message_extractor.rb +68 -0
- data/rdoc-8.0.0/lib/rdoc/generator/pot/po.rb +84 -0
- data/rdoc-8.0.0/lib/rdoc/generator/pot/po_entry.rb +141 -0
- data/rdoc-8.0.0/lib/rdoc/generator/pot.rb +94 -0
- data/rdoc-8.0.0/lib/rdoc/generator/ri.rb +30 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/DESIGN.md +536 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_aside_toc.rhtml +8 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_footer.rhtml +23 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_head.rhtml +163 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_header.rhtml +56 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_icons.rhtml +208 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_ancestors.rhtml +16 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_classes.rhtml +15 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_extends.rhtml +27 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_includes.rhtml +27 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_installed.rhtml +16 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_methods.rhtml +41 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_pages.rhtml +67 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_search.rhtml +15 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_sections.rhtml +21 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_toggle.rhtml +3 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/class.rhtml +230 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/css/rdoc.css +2181 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/index.rhtml +22 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/aliki.js +513 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/bash_highlighter.js +167 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/c_highlighter.js +299 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/search_controller.js +129 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/search_navigation.js +105 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/search_ranker.js +239 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/theme-toggle.js +112 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/page.rhtml +18 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/servlet_not_found.rhtml +14 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/aliki/servlet_root.rhtml +65 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_footer.rhtml +5 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_head.rhtml +43 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml +5 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml +17 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml +17 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml +16 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml +21 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml +11 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml +32 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml +6 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml +15 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml +11 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml +39 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_toggle.rhtml +3 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/class.rhtml +220 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/css/fonts.css +167 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/css/rdoc.css +701 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/add.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/arrow_up.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/brick.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/brick_link.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/bug.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/bullet_black.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/date.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/delete.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/find.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/macFFBgHack.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/package.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/page_green.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/page_white_text.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/page_white_width.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/plugin.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/ruby.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/tag_blue.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/tag_green.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/transparent.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/wrench.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/wrench_orange.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/zoom.png +0 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/index.rhtml +24 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/js/darkfish.js +140 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/js/search.js +120 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/page.rhtml +19 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml +21 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/servlet_root.rhtml +65 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/darkfish/table_of_contents.rhtml +72 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/json_index/js/navigation.js +105 -0
- data/rdoc-8.0.0/lib/rdoc/generator/template/json_index/js/searcher.js +271 -0
- data/rdoc-8.0.0/lib/rdoc/generator.rb +52 -0
- data/rdoc-8.0.0/lib/rdoc/i18n/locale.rb +102 -0
- data/rdoc-8.0.0/lib/rdoc/i18n/text.rb +126 -0
- data/rdoc-8.0.0/lib/rdoc/i18n.rb +10 -0
- data/rdoc-8.0.0/lib/rdoc/known_classes.rb +74 -0
- data/rdoc-8.0.0/lib/rdoc/markdown/entities.rb +2131 -0
- data/rdoc-8.0.0/lib/rdoc/markdown/literals.kpeg +21 -0
- data/rdoc-8.0.0/lib/rdoc/markdown/literals.rb +454 -0
- data/rdoc-8.0.0/lib/rdoc/markdown.kpeg +1315 -0
- data/rdoc-8.0.0/lib/rdoc/markdown.rb +16865 -0
- data/rdoc-8.0.0/lib/rdoc/markup/blank_line.rb +29 -0
- data/rdoc-8.0.0/lib/rdoc/markup/block_quote.rb +14 -0
- data/rdoc-8.0.0/lib/rdoc/markup/document.rb +164 -0
- data/rdoc-8.0.0/lib/rdoc/markup/element.rb +21 -0
- data/rdoc-8.0.0/lib/rdoc/markup/formatter.rb +285 -0
- data/rdoc-8.0.0/lib/rdoc/markup/hard_break.rb +34 -0
- data/rdoc-8.0.0/lib/rdoc/markup/heading.rb +170 -0
- data/rdoc-8.0.0/lib/rdoc/markup/include.rb +42 -0
- data/rdoc-8.0.0/lib/rdoc/markup/indented_paragraph.rb +47 -0
- data/rdoc-8.0.0/lib/rdoc/markup/inline_parser.rb +312 -0
- data/rdoc-8.0.0/lib/rdoc/markup/list.rb +101 -0
- data/rdoc-8.0.0/lib/rdoc/markup/list_item.rb +99 -0
- data/rdoc-8.0.0/lib/rdoc/markup/paragraph.rb +28 -0
- data/rdoc-8.0.0/lib/rdoc/markup/parser.rb +585 -0
- data/rdoc-8.0.0/lib/rdoc/markup/pre_process.rb +317 -0
- data/rdoc-8.0.0/lib/rdoc/markup/raw.rb +66 -0
- data/rdoc-8.0.0/lib/rdoc/markup/rule.rb +20 -0
- data/rdoc-8.0.0/lib/rdoc/markup/table.rb +64 -0
- data/rdoc-8.0.0/lib/rdoc/markup/to_ansi.rb +144 -0
- data/rdoc-8.0.0/lib/rdoc/markup/to_bs.rb +86 -0
- data/rdoc-8.0.0/lib/rdoc/markup/to_html.rb +682 -0
- data/rdoc-8.0.0/lib/rdoc/markup/to_html_crossref.rb +261 -0
- data/rdoc-8.0.0/lib/rdoc/markup/to_html_snippet.rb +287 -0
- data/rdoc-8.0.0/lib/rdoc/markup/to_joined_paragraph.rb +41 -0
- data/rdoc-8.0.0/lib/rdoc/markup/to_label.rb +84 -0
- data/rdoc-8.0.0/lib/rdoc/markup/to_markdown.rb +215 -0
- data/rdoc-8.0.0/lib/rdoc/markup/to_rdoc.rb +421 -0
- data/rdoc-8.0.0/lib/rdoc/markup/to_table_of_contents.rb +88 -0
- data/rdoc-8.0.0/lib/rdoc/markup/to_test.rb +77 -0
- data/rdoc-8.0.0/lib/rdoc/markup/to_tt_only.rb +107 -0
- data/rdoc-8.0.0/lib/rdoc/markup/verbatim.rb +83 -0
- data/rdoc-8.0.0/lib/rdoc/markup.rb +219 -0
- data/rdoc-8.0.0/lib/rdoc/options.rb +1412 -0
- data/rdoc-8.0.0/lib/rdoc/parser/c.rb +1227 -0
- data/rdoc-8.0.0/lib/rdoc/parser/changelog.rb +379 -0
- data/rdoc-8.0.0/lib/rdoc/parser/markdown.rb +22 -0
- data/rdoc-8.0.0/lib/rdoc/parser/rbs.rb +275 -0
- data/rdoc-8.0.0/lib/rdoc/parser/rd.rb +22 -0
- data/rdoc-8.0.0/lib/rdoc/parser/ruby.rb +1266 -0
- data/rdoc-8.0.0/lib/rdoc/parser/ruby_colorizer.rb +253 -0
- data/rdoc-8.0.0/lib/rdoc/parser/simple.rb +44 -0
- data/rdoc-8.0.0/lib/rdoc/parser/text.rb +11 -0
- data/rdoc-8.0.0/lib/rdoc/parser.rb +298 -0
- data/rdoc-8.0.0/lib/rdoc/rbs_helper.rb +186 -0
- data/rdoc-8.0.0/lib/rdoc/rd/block_parser.rb +1706 -0
- data/rdoc-8.0.0/lib/rdoc/rd/block_parser.ry +643 -0
- data/rdoc-8.0.0/lib/rdoc/rd/inline.rb +71 -0
- data/rdoc-8.0.0/lib/rdoc/rd/inline_parser.rb +1854 -0
- data/rdoc-8.0.0/lib/rdoc/rd/inline_parser.ry +593 -0
- data/rdoc-8.0.0/lib/rdoc/rd.rb +99 -0
- data/rdoc-8.0.0/lib/rdoc/rdoc.rb +724 -0
- data/rdoc-8.0.0/lib/rdoc/ri/driver.rb +1572 -0
- data/rdoc-8.0.0/lib/rdoc/ri/formatter.rb +6 -0
- data/rdoc-8.0.0/lib/rdoc/ri/paths.rb +171 -0
- data/rdoc-8.0.0/lib/rdoc/ri/servlet.rb +452 -0
- data/rdoc-8.0.0/lib/rdoc/ri/store.rb +6 -0
- data/rdoc-8.0.0/lib/rdoc/ri/task.rb +71 -0
- data/rdoc-8.0.0/lib/rdoc/ri.rb +21 -0
- data/rdoc-8.0.0/lib/rdoc/rubygems_hook.rb +327 -0
- data/rdoc-8.0.0/lib/rdoc/server.rb +460 -0
- data/rdoc-8.0.0/lib/rdoc/stats/normal.rb +58 -0
- data/rdoc-8.0.0/lib/rdoc/stats/quiet.rb +59 -0
- data/rdoc-8.0.0/lib/rdoc/stats/verbose.rb +44 -0
- data/rdoc-8.0.0/lib/rdoc/stats.rb +484 -0
- data/rdoc-8.0.0/lib/rdoc/store.rb +1205 -0
- data/rdoc-8.0.0/lib/rdoc/task.rb +355 -0
- data/rdoc-8.0.0/lib/rdoc/text.rb +244 -0
- data/rdoc-8.0.0/lib/rdoc/token_stream.rb +104 -0
- data/rdoc-8.0.0/lib/rdoc/tom_doc.rb +257 -0
- data/rdoc-8.0.0/lib/rdoc/version.rb +10 -0
- data/rdoc-8.0.0/lib/rdoc.rb +239 -0
- data/rdoc-8.0.0/lib/rubygems_plugin.rb +14 -0
- data/rdoc-8.0.0/man/ri.1 +249 -0
- data/rdoc-8.0.0/rdoc-logo.svg +43 -0
- data/rdoc-8.0.0/rdoc.gemspec +74 -0
- metadata +256 -0
data/rdoc-8.0.0/man/ri.1
ADDED
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
|
|
2
|
+
.Dd April 20, 2017
|
|
3
|
+
.Dt RI \&1 "Ruby Programmer's Reference Guide"
|
|
4
|
+
.Os UNIX
|
|
5
|
+
.Sh NAME
|
|
6
|
+
.Nm ri
|
|
7
|
+
.Nd Ruby API reference front end
|
|
8
|
+
.Sh SYNOPSIS
|
|
9
|
+
.Nm
|
|
10
|
+
.Op Fl ahilTv
|
|
11
|
+
.Op Fl d Ar DIRNAME
|
|
12
|
+
.Op Fl f Ar FORMAT
|
|
13
|
+
.Op Fl w Ar WIDTH
|
|
14
|
+
.Op Fl - Ns Oo Cm no- Oc Ns Cm pager
|
|
15
|
+
.Op Fl -server Ns Oo = Ns Ar PORT Oc
|
|
16
|
+
.Op Fl - Ns Oo Cm no- Oc Ns Cm list-doc-dirs
|
|
17
|
+
.Op Fl -no-standard-docs
|
|
18
|
+
.Op Fl - Ns Oo Cm no- Oc Ns Bro Cm system Ns | Ns Cm site Ns | Ns Cm gems Ns | Ns Cm home Brc
|
|
19
|
+
.Op Fl - Ns Oo Cm no- Oc Ns Cm profile
|
|
20
|
+
.Op Fl -dump Ns = Ns Ar CACHE
|
|
21
|
+
.Op Ar name ...
|
|
22
|
+
.Sh DESCRIPTION
|
|
23
|
+
.Nm
|
|
24
|
+
is a command-line front end for the Ruby API reference.
|
|
25
|
+
You can search and read the API reference for classes and methods with
|
|
26
|
+
.Nm .
|
|
27
|
+
.Pp
|
|
28
|
+
.Nm
|
|
29
|
+
is a part of Ruby.
|
|
30
|
+
.Pp
|
|
31
|
+
.Ar name
|
|
32
|
+
can be:
|
|
33
|
+
.Bl -diag -offset indent
|
|
34
|
+
.It Class | Module | Module::Class
|
|
35
|
+
.Pp
|
|
36
|
+
.It Class::method | Class#method | Class.method | method
|
|
37
|
+
.Pp
|
|
38
|
+
.It gem_name: | gem_name:README | gem_name:History
|
|
39
|
+
.Pp
|
|
40
|
+
.It ruby: | ruby:NEWS | ruby:globals
|
|
41
|
+
.El
|
|
42
|
+
.Pp
|
|
43
|
+
All class names may be abbreviated to their minimum unambiguous form.
|
|
44
|
+
If a name is ambiguous, all valid options will be listed.
|
|
45
|
+
.Pp
|
|
46
|
+
A
|
|
47
|
+
.Ql \&.
|
|
48
|
+
matches either class or instance methods, while #method
|
|
49
|
+
matches only instance and ::method matches only class methods.
|
|
50
|
+
.Pp
|
|
51
|
+
README and other files may be displayed by prefixing them with the gem name
|
|
52
|
+
they're contained in. If the gem name is followed by a
|
|
53
|
+
.Ql \&:
|
|
54
|
+
all files in the gem will be shown.
|
|
55
|
+
The file name extension may be omitted where it is unambiguous.
|
|
56
|
+
.Pp
|
|
57
|
+
For example:
|
|
58
|
+
.Bd -literal -offset indent
|
|
59
|
+
ri Fil
|
|
60
|
+
ri File
|
|
61
|
+
ri File.new
|
|
62
|
+
ri zip
|
|
63
|
+
ri rdoc:README
|
|
64
|
+
.Ed
|
|
65
|
+
.Pp
|
|
66
|
+
Note that shell quoting or escaping may be required for method names
|
|
67
|
+
containing punctuation:
|
|
68
|
+
.Bd -literal -offset indent
|
|
69
|
+
ri 'Array.[]'
|
|
70
|
+
ri compact\e!
|
|
71
|
+
.Ed
|
|
72
|
+
.Pp
|
|
73
|
+
To see the default directories
|
|
74
|
+
.Nm
|
|
75
|
+
will search, run:
|
|
76
|
+
.Bd -literal -offset indent
|
|
77
|
+
ri --list-doc-dirs
|
|
78
|
+
.Ed
|
|
79
|
+
.Pp
|
|
80
|
+
Specifying the
|
|
81
|
+
.Fl -system , Fl -site , Fl -home , Fl -gems ,
|
|
82
|
+
or
|
|
83
|
+
.Fl -doc-dir
|
|
84
|
+
options will limit
|
|
85
|
+
.Nm
|
|
86
|
+
to searching only the specified directories.
|
|
87
|
+
.Pp
|
|
88
|
+
.Nm
|
|
89
|
+
options may be set in the
|
|
90
|
+
.Ev RI
|
|
91
|
+
environment variable.
|
|
92
|
+
.Pp
|
|
93
|
+
The
|
|
94
|
+
.Nm
|
|
95
|
+
pager can be set with the
|
|
96
|
+
.Ev RI_PAGER
|
|
97
|
+
environment variable or the
|
|
98
|
+
.Ev PAGER
|
|
99
|
+
environment variable.
|
|
100
|
+
.Pp
|
|
101
|
+
.Sh OPTIONS
|
|
102
|
+
.Bl -tag -width "1234567890123" -compact
|
|
103
|
+
.Pp
|
|
104
|
+
.It Fl i
|
|
105
|
+
.It Fl - Ns Oo Cm no- Oc Ns Cm interactive
|
|
106
|
+
In interactive mode you can repeatedly
|
|
107
|
+
look up methods with autocomplete.
|
|
108
|
+
.Pp
|
|
109
|
+
.It Fl a
|
|
110
|
+
.It Fl - Ns Oo Cm no- Oc Ns Cm all
|
|
111
|
+
Show all documentation for a class or module.
|
|
112
|
+
.Pp
|
|
113
|
+
.It Fl l
|
|
114
|
+
.It Fl - Ns Oo Cm no- Oc Ns Cm list
|
|
115
|
+
List classes
|
|
116
|
+
.Nm
|
|
117
|
+
knows about.
|
|
118
|
+
.Pp
|
|
119
|
+
.It Fl - Ns Oo Cm no- Oc Ns Cm pager
|
|
120
|
+
Send output to a pager,
|
|
121
|
+
rather than directly to stdout.
|
|
122
|
+
.Pp
|
|
123
|
+
.It Fl T
|
|
124
|
+
Synonym for
|
|
125
|
+
.Fl -no-pager .
|
|
126
|
+
.Pp
|
|
127
|
+
.It Fl w Ar WIDTH
|
|
128
|
+
.It Fl -width Ns = Ns Ar WIDTH
|
|
129
|
+
Set the width of the output.
|
|
130
|
+
.Pp
|
|
131
|
+
.It Fl -server Ns Oo = Ns Ar PORT Oc
|
|
132
|
+
Run RDoc server on the given port.
|
|
133
|
+
The default port is\~8214.
|
|
134
|
+
.Pp
|
|
135
|
+
.It Fl f Ar FORMAT
|
|
136
|
+
.It Fl -format Ns = Ns Ar FORMAT
|
|
137
|
+
Use the selected formatter.
|
|
138
|
+
The default formatter is
|
|
139
|
+
.Li bs
|
|
140
|
+
for paged output and
|
|
141
|
+
.Li ansi
|
|
142
|
+
otherwise.
|
|
143
|
+
Valid formatters are:
|
|
144
|
+
.Li ansi , Li bs , Li markdown , Li rdoc .
|
|
145
|
+
.Pp
|
|
146
|
+
.It Fl h
|
|
147
|
+
.It Fl -help
|
|
148
|
+
Show help and exit.
|
|
149
|
+
.Pp
|
|
150
|
+
.It Fl v
|
|
151
|
+
.It Fl -version
|
|
152
|
+
Output version information and exit.
|
|
153
|
+
.El
|
|
154
|
+
.Pp
|
|
155
|
+
Data source options:
|
|
156
|
+
.Bl -tag -width "1234567890123" -compact
|
|
157
|
+
.Pp
|
|
158
|
+
.It Fl - Ns Oo Cm no- Oc Ns Cm list-doc-dirs
|
|
159
|
+
List the directories from which
|
|
160
|
+
.Nm
|
|
161
|
+
will source documentation on stdout and exit.
|
|
162
|
+
.Pp
|
|
163
|
+
.It Fl d Ar DIRNAME
|
|
164
|
+
.It Fl -doc-dir Ns = Ns Ar DIRNAME
|
|
165
|
+
List of directories from which to source
|
|
166
|
+
documentation in addition to the standard
|
|
167
|
+
directories. May be repeated.
|
|
168
|
+
.Pp
|
|
169
|
+
.It Fl -no-standard-docs
|
|
170
|
+
Do not include documentation from the Ruby standard library,
|
|
171
|
+
.Pa site_lib ,
|
|
172
|
+
installed gems, or
|
|
173
|
+
.Pa ~/.rdoc .
|
|
174
|
+
Use with
|
|
175
|
+
.Fl -doc-dir .
|
|
176
|
+
.Pp
|
|
177
|
+
.It Fl - Ns Oo Cm no- Oc Ns Cm system
|
|
178
|
+
Include documentation from Ruby's standard library. Defaults to true.
|
|
179
|
+
.Pp
|
|
180
|
+
.It Fl - Ns Oo Cm no- Oc Ns Cm site
|
|
181
|
+
Include documentation from libraries installed in
|
|
182
|
+
.Pa site_lib .
|
|
183
|
+
Defaults to true.
|
|
184
|
+
.Pp
|
|
185
|
+
.It Fl - Ns Oo Cm no- Oc Ns Cm gems
|
|
186
|
+
Include documentation from RubyGems. Defaults to true.
|
|
187
|
+
.Pp
|
|
188
|
+
.It Fl - Ns Oo Cm no- Oc Ns Cm home
|
|
189
|
+
Include documentation stored in
|
|
190
|
+
.Pa ~/.rdoc .
|
|
191
|
+
Defaults to true.
|
|
192
|
+
.El
|
|
193
|
+
.Pp
|
|
194
|
+
Debug options:
|
|
195
|
+
.Bl -tag -width "1234567890123" -compact
|
|
196
|
+
.Pp
|
|
197
|
+
.It Fl - Ns Oo Cm no- Oc Ns Cm profile
|
|
198
|
+
Run with the Ruby profiler.
|
|
199
|
+
.Pp
|
|
200
|
+
.It Fl -dump Ns = Ns Ar CACHE
|
|
201
|
+
Dump data from an ri cache or data file.
|
|
202
|
+
.El
|
|
203
|
+
.Pp
|
|
204
|
+
.Sh ENVIRONMENT
|
|
205
|
+
.Bl -tag -width "USERPROFILE" -compact
|
|
206
|
+
.Pp
|
|
207
|
+
.It Ev RI
|
|
208
|
+
Options to prepend to those specified on the command-line.
|
|
209
|
+
.Pp
|
|
210
|
+
.It Ev RI_PAGER
|
|
211
|
+
.It Ev PAGER
|
|
212
|
+
Pager program to use for displaying.
|
|
213
|
+
.Pp
|
|
214
|
+
.It Ev HOME
|
|
215
|
+
.It Ev USERPROFILE
|
|
216
|
+
.It Ev HOMEPATH
|
|
217
|
+
Path to the user's home directory.
|
|
218
|
+
.El
|
|
219
|
+
.Pp
|
|
220
|
+
.Sh FILES
|
|
221
|
+
.Bl -tag -width "USERPROFILE" -compact
|
|
222
|
+
.Pp
|
|
223
|
+
.It Pa ~/.rdoc
|
|
224
|
+
Path for ri data in the user's home directory.
|
|
225
|
+
.Pp
|
|
226
|
+
.El
|
|
227
|
+
.Pp
|
|
228
|
+
.Sh SEE ALSO
|
|
229
|
+
.Xr ruby 1 ,
|
|
230
|
+
.Xr rdoc 1 ,
|
|
231
|
+
.Xr gem 1
|
|
232
|
+
.Pp
|
|
233
|
+
.Sh REPORTING BUGS
|
|
234
|
+
.Bl -bullet
|
|
235
|
+
.It
|
|
236
|
+
Security vulnerabilities should be reported via an email to
|
|
237
|
+
.Mt security@ruby-lang.org .
|
|
238
|
+
Reported problems will be published after being fixed.
|
|
239
|
+
.Pp
|
|
240
|
+
.It
|
|
241
|
+
Other bugs and feature requests can be reported via the
|
|
242
|
+
Ruby Issue Tracking System
|
|
243
|
+
.Pq Lk https://bugs.ruby-lang.org/ .
|
|
244
|
+
Do not report security vulnerabilities
|
|
245
|
+
via this system because it publishes the vulnerabilities immediately.
|
|
246
|
+
.El
|
|
247
|
+
.Sh AUTHORS
|
|
248
|
+
Written by
|
|
249
|
+
.An Dave Thomas Aq dave@pragmaticprogrammer.com .
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="168" height="198" viewBox="298 140 712 840" role="img" aria-labelledby="title desc">
|
|
2
|
+
<title id="title">RDoc</title>
|
|
3
|
+
<desc id="desc">A red document outline with a folded corner and a Ruby gem.</desc>
|
|
4
|
+
<style>
|
|
5
|
+
.surface {
|
|
6
|
+
fill: transparent;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.stroke {
|
|
10
|
+
stroke: url(#rdoc-red);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.solid {
|
|
14
|
+
fill: url(#rdoc-red);
|
|
15
|
+
}
|
|
16
|
+
</style>
|
|
17
|
+
<defs>
|
|
18
|
+
<linearGradient id="rdoc-red" x1="338" y1="178" x2="973" y2="938" gradientUnits="userSpaceOnUse">
|
|
19
|
+
<stop id="rdoc-red-start" offset="0" stop-color="#e62923"/>
|
|
20
|
+
<stop id="rdoc-red-mid" offset="0.56" stop-color="#e62923"/>
|
|
21
|
+
<stop id="rdoc-red-end" offset="1" stop-color="#e62923"/>
|
|
22
|
+
</linearGradient>
|
|
23
|
+
<filter id="soft-red-shadow" x="-10%" y="-10%" width="120%" height="120%">
|
|
24
|
+
<feDropShadow dx="0" dy="5" stdDeviation="5" flood-color="#e62923" flood-opacity="0.1"/>
|
|
25
|
+
</filter>
|
|
26
|
+
</defs>
|
|
27
|
+
|
|
28
|
+
<g filter="url(#soft-red-shadow)" fill="none" class="stroke" stroke-linecap="round" stroke-linejoin="round">
|
|
29
|
+
<path class="surface" d="M382 178h326l149 149v499c0 24-20 44-44 44H382c-24 0-44-20-44-44V222c0-24 20-44 44-44Z" stroke="none"/>
|
|
30
|
+
<path d="M685 870H382c-24 0-44-20-44-44V222c0-24 20-44 44-44h326l149 149v246" stroke-width="26"/>
|
|
31
|
+
<path class="solid" d="M708 178v126c0 24 19 43 43 43h106" stroke="none"/>
|
|
32
|
+
<path d="M708 178 857 327" stroke-width="26"/>
|
|
33
|
+
|
|
34
|
+
<path d="M440 411h216" stroke-width="26"/>
|
|
35
|
+
<path d="M440 506h216" stroke-width="26"/>
|
|
36
|
+
<path d="M440 605h145" stroke-width="26"/>
|
|
37
|
+
|
|
38
|
+
<path class="surface" d="M668 609h224l81 97-195 232-191-232 81-97Z" stroke-width="26"/>
|
|
39
|
+
<path d="M668 609 700 706 778 609 858 706 892 609" stroke-width="20"/>
|
|
40
|
+
<path d="M587 706h386" stroke-width="20"/>
|
|
41
|
+
<path d="M700 706 778 938 858 706" stroke-width="20"/>
|
|
42
|
+
</g>
|
|
43
|
+
</svg>
|
|
@@ -0,0 +1,74 @@
|
|
|
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", "GPL-2.0-only"]
|
|
30
|
+
|
|
31
|
+
s.metadata["homepage_uri"] = s.homepage
|
|
32
|
+
s.metadata["source_code_uri"] = "https://github.com/ruby/rdoc"
|
|
33
|
+
s.metadata["changelog_uri"] = "#{s.metadata["source_code_uri"]}/releases"
|
|
34
|
+
|
|
35
|
+
s.bindir = "exe"
|
|
36
|
+
s.executables = ["rdoc", "ri"]
|
|
37
|
+
s.require_paths = ["lib"]
|
|
38
|
+
# for ruby core repository. It was generated by
|
|
39
|
+
# `git ls-files -z`.split("\x0").each {|f| puts " #{f.dump}," unless f.start_with?(*%W[test/ spec/ features/ .]) }
|
|
40
|
+
non_lib_files = [
|
|
41
|
+
"CONTRIBUTING.md",
|
|
42
|
+
"CVE-2013-0256.rdoc",
|
|
43
|
+
"doc/markup_reference/markdown.md",
|
|
44
|
+
"doc/markup_reference/rdoc.rdoc",
|
|
45
|
+
"History.rdoc",
|
|
46
|
+
"LEGAL.rdoc",
|
|
47
|
+
"LICENSE.rdoc",
|
|
48
|
+
"README.md",
|
|
49
|
+
"RI.md",
|
|
50
|
+
"TODO.rdoc",
|
|
51
|
+
"exe/rdoc",
|
|
52
|
+
"exe/ri",
|
|
53
|
+
"man/ri.1",
|
|
54
|
+
"rdoc-logo.svg",
|
|
55
|
+
"rdoc.gemspec",
|
|
56
|
+
]
|
|
57
|
+
base = __dir__
|
|
58
|
+
not_dir = ->(path) {!File.directory?(File.join(base, path))}
|
|
59
|
+
template_files = Dir.glob("lib/rdoc/generator/template/**/*", base: base).select(¬_dir)
|
|
60
|
+
lib_files = Dir.glob("lib/**/*.{rb,kpeg,ry}", base: base).select(¬_dir)
|
|
61
|
+
|
|
62
|
+
s.files = (non_lib_files + template_files + lib_files).uniq
|
|
63
|
+
|
|
64
|
+
s.rdoc_options = ["--main", "README.md", "--copy-files", "rdoc-logo.svg"]
|
|
65
|
+
s.extra_rdoc_files += s.files.grep(%r[\A[^\/]+\.(?:rdoc|md)\z])
|
|
66
|
+
|
|
67
|
+
s.required_ruby_version = Gem::Requirement.new(">= 3.2.0")
|
|
68
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 2.2")
|
|
69
|
+
|
|
70
|
+
s.add_dependency 'erb'
|
|
71
|
+
s.add_dependency 'tsort'
|
|
72
|
+
s.add_dependency 'prism', '>= 1.6.0'
|
|
73
|
+
s.add_dependency 'rbs', '>= 4.0.0'
|
|
74
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: mega-max-hub
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Andrey78
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 2026-07-06 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: University research based on rdoc
|
|
13
|
+
email:
|
|
14
|
+
- cakoc614@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- mega-max-hub.gemspec
|
|
20
|
+
- rdoc-8.0.0/CONTRIBUTING.md
|
|
21
|
+
- rdoc-8.0.0/CVE-2013-0256.rdoc
|
|
22
|
+
- rdoc-8.0.0/History.rdoc
|
|
23
|
+
- rdoc-8.0.0/LEGAL.rdoc
|
|
24
|
+
- rdoc-8.0.0/LICENSE.rdoc
|
|
25
|
+
- rdoc-8.0.0/README.md
|
|
26
|
+
- rdoc-8.0.0/RI.md
|
|
27
|
+
- rdoc-8.0.0/TODO.rdoc
|
|
28
|
+
- rdoc-8.0.0/doc/markup_reference/markdown.md
|
|
29
|
+
- rdoc-8.0.0/doc/markup_reference/rdoc.rdoc
|
|
30
|
+
- rdoc-8.0.0/exe/rdoc
|
|
31
|
+
- rdoc-8.0.0/exe/ri
|
|
32
|
+
- rdoc-8.0.0/lib/rdoc.rb
|
|
33
|
+
- rdoc-8.0.0/lib/rdoc/code_object.rb
|
|
34
|
+
- rdoc-8.0.0/lib/rdoc/code_object/alias.rb
|
|
35
|
+
- rdoc-8.0.0/lib/rdoc/code_object/any_method.rb
|
|
36
|
+
- rdoc-8.0.0/lib/rdoc/code_object/attr.rb
|
|
37
|
+
- rdoc-8.0.0/lib/rdoc/code_object/class_module.rb
|
|
38
|
+
- rdoc-8.0.0/lib/rdoc/code_object/constant.rb
|
|
39
|
+
- rdoc-8.0.0/lib/rdoc/code_object/context.rb
|
|
40
|
+
- rdoc-8.0.0/lib/rdoc/code_object/context/section.rb
|
|
41
|
+
- rdoc-8.0.0/lib/rdoc/code_object/extend.rb
|
|
42
|
+
- rdoc-8.0.0/lib/rdoc/code_object/include.rb
|
|
43
|
+
- rdoc-8.0.0/lib/rdoc/code_object/method_attr.rb
|
|
44
|
+
- rdoc-8.0.0/lib/rdoc/code_object/mixin.rb
|
|
45
|
+
- rdoc-8.0.0/lib/rdoc/code_object/normal_class.rb
|
|
46
|
+
- rdoc-8.0.0/lib/rdoc/code_object/normal_module.rb
|
|
47
|
+
- rdoc-8.0.0/lib/rdoc/code_object/require.rb
|
|
48
|
+
- rdoc-8.0.0/lib/rdoc/code_object/single_class.rb
|
|
49
|
+
- rdoc-8.0.0/lib/rdoc/code_object/top_level.rb
|
|
50
|
+
- rdoc-8.0.0/lib/rdoc/code_objects.rb
|
|
51
|
+
- rdoc-8.0.0/lib/rdoc/comment.rb
|
|
52
|
+
- rdoc-8.0.0/lib/rdoc/cross_reference.rb
|
|
53
|
+
- rdoc-8.0.0/lib/rdoc/encoding.rb
|
|
54
|
+
- rdoc-8.0.0/lib/rdoc/erb_partial.rb
|
|
55
|
+
- rdoc-8.0.0/lib/rdoc/erbio.rb
|
|
56
|
+
- rdoc-8.0.0/lib/rdoc/generator.rb
|
|
57
|
+
- rdoc-8.0.0/lib/rdoc/generator/aliki.rb
|
|
58
|
+
- rdoc-8.0.0/lib/rdoc/generator/darkfish.rb
|
|
59
|
+
- rdoc-8.0.0/lib/rdoc/generator/json_index.rb
|
|
60
|
+
- rdoc-8.0.0/lib/rdoc/generator/markup.rb
|
|
61
|
+
- rdoc-8.0.0/lib/rdoc/generator/pot.rb
|
|
62
|
+
- rdoc-8.0.0/lib/rdoc/generator/pot/message_extractor.rb
|
|
63
|
+
- rdoc-8.0.0/lib/rdoc/generator/pot/po.rb
|
|
64
|
+
- rdoc-8.0.0/lib/rdoc/generator/pot/po_entry.rb
|
|
65
|
+
- rdoc-8.0.0/lib/rdoc/generator/ri.rb
|
|
66
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/DESIGN.md
|
|
67
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_aside_toc.rhtml
|
|
68
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_footer.rhtml
|
|
69
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_head.rhtml
|
|
70
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_header.rhtml
|
|
71
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_icons.rhtml
|
|
72
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_ancestors.rhtml
|
|
73
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_classes.rhtml
|
|
74
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_extends.rhtml
|
|
75
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_includes.rhtml
|
|
76
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_installed.rhtml
|
|
77
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_methods.rhtml
|
|
78
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_pages.rhtml
|
|
79
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_search.rhtml
|
|
80
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_sections.rhtml
|
|
81
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/_sidebar_toggle.rhtml
|
|
82
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/class.rhtml
|
|
83
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/css/rdoc.css
|
|
84
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/index.rhtml
|
|
85
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/aliki.js
|
|
86
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/bash_highlighter.js
|
|
87
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/c_highlighter.js
|
|
88
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/search_controller.js
|
|
89
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/search_navigation.js
|
|
90
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/search_ranker.js
|
|
91
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/js/theme-toggle.js
|
|
92
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/page.rhtml
|
|
93
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/servlet_not_found.rhtml
|
|
94
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/aliki/servlet_root.rhtml
|
|
95
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_footer.rhtml
|
|
96
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_head.rhtml
|
|
97
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml
|
|
98
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml
|
|
99
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml
|
|
100
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml
|
|
101
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml
|
|
102
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml
|
|
103
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml
|
|
104
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml
|
|
105
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml
|
|
106
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml
|
|
107
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml
|
|
108
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/_sidebar_toggle.rhtml
|
|
109
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/class.rhtml
|
|
110
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/css/fonts.css
|
|
111
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/css/rdoc.css
|
|
112
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf
|
|
113
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf
|
|
114
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf
|
|
115
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf
|
|
116
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf
|
|
117
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf
|
|
118
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/add.png
|
|
119
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/arrow_up.png
|
|
120
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/brick.png
|
|
121
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/brick_link.png
|
|
122
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/bug.png
|
|
123
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/bullet_black.png
|
|
124
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png
|
|
125
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png
|
|
126
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/date.png
|
|
127
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/delete.png
|
|
128
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/find.png
|
|
129
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif
|
|
130
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/macFFBgHack.png
|
|
131
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/package.png
|
|
132
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/page_green.png
|
|
133
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/page_white_text.png
|
|
134
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/page_white_width.png
|
|
135
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/plugin.png
|
|
136
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/ruby.png
|
|
137
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/tag_blue.png
|
|
138
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/tag_green.png
|
|
139
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/transparent.png
|
|
140
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/wrench.png
|
|
141
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/wrench_orange.png
|
|
142
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/images/zoom.png
|
|
143
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/index.rhtml
|
|
144
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/js/darkfish.js
|
|
145
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/js/search.js
|
|
146
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/page.rhtml
|
|
147
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml
|
|
148
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/servlet_root.rhtml
|
|
149
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/darkfish/table_of_contents.rhtml
|
|
150
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/json_index/js/navigation.js
|
|
151
|
+
- rdoc-8.0.0/lib/rdoc/generator/template/json_index/js/searcher.js
|
|
152
|
+
- rdoc-8.0.0/lib/rdoc/i18n.rb
|
|
153
|
+
- rdoc-8.0.0/lib/rdoc/i18n/locale.rb
|
|
154
|
+
- rdoc-8.0.0/lib/rdoc/i18n/text.rb
|
|
155
|
+
- rdoc-8.0.0/lib/rdoc/known_classes.rb
|
|
156
|
+
- rdoc-8.0.0/lib/rdoc/markdown.kpeg
|
|
157
|
+
- rdoc-8.0.0/lib/rdoc/markdown.rb
|
|
158
|
+
- rdoc-8.0.0/lib/rdoc/markdown/entities.rb
|
|
159
|
+
- rdoc-8.0.0/lib/rdoc/markdown/literals.kpeg
|
|
160
|
+
- rdoc-8.0.0/lib/rdoc/markdown/literals.rb
|
|
161
|
+
- rdoc-8.0.0/lib/rdoc/markup.rb
|
|
162
|
+
- rdoc-8.0.0/lib/rdoc/markup/blank_line.rb
|
|
163
|
+
- rdoc-8.0.0/lib/rdoc/markup/block_quote.rb
|
|
164
|
+
- rdoc-8.0.0/lib/rdoc/markup/document.rb
|
|
165
|
+
- rdoc-8.0.0/lib/rdoc/markup/element.rb
|
|
166
|
+
- rdoc-8.0.0/lib/rdoc/markup/formatter.rb
|
|
167
|
+
- rdoc-8.0.0/lib/rdoc/markup/hard_break.rb
|
|
168
|
+
- rdoc-8.0.0/lib/rdoc/markup/heading.rb
|
|
169
|
+
- rdoc-8.0.0/lib/rdoc/markup/include.rb
|
|
170
|
+
- rdoc-8.0.0/lib/rdoc/markup/indented_paragraph.rb
|
|
171
|
+
- rdoc-8.0.0/lib/rdoc/markup/inline_parser.rb
|
|
172
|
+
- rdoc-8.0.0/lib/rdoc/markup/list.rb
|
|
173
|
+
- rdoc-8.0.0/lib/rdoc/markup/list_item.rb
|
|
174
|
+
- rdoc-8.0.0/lib/rdoc/markup/paragraph.rb
|
|
175
|
+
- rdoc-8.0.0/lib/rdoc/markup/parser.rb
|
|
176
|
+
- rdoc-8.0.0/lib/rdoc/markup/pre_process.rb
|
|
177
|
+
- rdoc-8.0.0/lib/rdoc/markup/raw.rb
|
|
178
|
+
- rdoc-8.0.0/lib/rdoc/markup/rule.rb
|
|
179
|
+
- rdoc-8.0.0/lib/rdoc/markup/table.rb
|
|
180
|
+
- rdoc-8.0.0/lib/rdoc/markup/to_ansi.rb
|
|
181
|
+
- rdoc-8.0.0/lib/rdoc/markup/to_bs.rb
|
|
182
|
+
- rdoc-8.0.0/lib/rdoc/markup/to_html.rb
|
|
183
|
+
- rdoc-8.0.0/lib/rdoc/markup/to_html_crossref.rb
|
|
184
|
+
- rdoc-8.0.0/lib/rdoc/markup/to_html_snippet.rb
|
|
185
|
+
- rdoc-8.0.0/lib/rdoc/markup/to_joined_paragraph.rb
|
|
186
|
+
- rdoc-8.0.0/lib/rdoc/markup/to_label.rb
|
|
187
|
+
- rdoc-8.0.0/lib/rdoc/markup/to_markdown.rb
|
|
188
|
+
- rdoc-8.0.0/lib/rdoc/markup/to_rdoc.rb
|
|
189
|
+
- rdoc-8.0.0/lib/rdoc/markup/to_table_of_contents.rb
|
|
190
|
+
- rdoc-8.0.0/lib/rdoc/markup/to_test.rb
|
|
191
|
+
- rdoc-8.0.0/lib/rdoc/markup/to_tt_only.rb
|
|
192
|
+
- rdoc-8.0.0/lib/rdoc/markup/verbatim.rb
|
|
193
|
+
- rdoc-8.0.0/lib/rdoc/options.rb
|
|
194
|
+
- rdoc-8.0.0/lib/rdoc/parser.rb
|
|
195
|
+
- rdoc-8.0.0/lib/rdoc/parser/c.rb
|
|
196
|
+
- rdoc-8.0.0/lib/rdoc/parser/changelog.rb
|
|
197
|
+
- rdoc-8.0.0/lib/rdoc/parser/markdown.rb
|
|
198
|
+
- rdoc-8.0.0/lib/rdoc/parser/rbs.rb
|
|
199
|
+
- rdoc-8.0.0/lib/rdoc/parser/rd.rb
|
|
200
|
+
- rdoc-8.0.0/lib/rdoc/parser/ruby.rb
|
|
201
|
+
- rdoc-8.0.0/lib/rdoc/parser/ruby_colorizer.rb
|
|
202
|
+
- rdoc-8.0.0/lib/rdoc/parser/simple.rb
|
|
203
|
+
- rdoc-8.0.0/lib/rdoc/parser/text.rb
|
|
204
|
+
- rdoc-8.0.0/lib/rdoc/rbs_helper.rb
|
|
205
|
+
- rdoc-8.0.0/lib/rdoc/rd.rb
|
|
206
|
+
- rdoc-8.0.0/lib/rdoc/rd/block_parser.rb
|
|
207
|
+
- rdoc-8.0.0/lib/rdoc/rd/block_parser.ry
|
|
208
|
+
- rdoc-8.0.0/lib/rdoc/rd/inline.rb
|
|
209
|
+
- rdoc-8.0.0/lib/rdoc/rd/inline_parser.rb
|
|
210
|
+
- rdoc-8.0.0/lib/rdoc/rd/inline_parser.ry
|
|
211
|
+
- rdoc-8.0.0/lib/rdoc/rdoc.rb
|
|
212
|
+
- rdoc-8.0.0/lib/rdoc/ri.rb
|
|
213
|
+
- rdoc-8.0.0/lib/rdoc/ri/driver.rb
|
|
214
|
+
- rdoc-8.0.0/lib/rdoc/ri/formatter.rb
|
|
215
|
+
- rdoc-8.0.0/lib/rdoc/ri/paths.rb
|
|
216
|
+
- rdoc-8.0.0/lib/rdoc/ri/servlet.rb
|
|
217
|
+
- rdoc-8.0.0/lib/rdoc/ri/store.rb
|
|
218
|
+
- rdoc-8.0.0/lib/rdoc/ri/task.rb
|
|
219
|
+
- rdoc-8.0.0/lib/rdoc/rubygems_hook.rb
|
|
220
|
+
- rdoc-8.0.0/lib/rdoc/server.rb
|
|
221
|
+
- rdoc-8.0.0/lib/rdoc/stats.rb
|
|
222
|
+
- rdoc-8.0.0/lib/rdoc/stats/normal.rb
|
|
223
|
+
- rdoc-8.0.0/lib/rdoc/stats/quiet.rb
|
|
224
|
+
- rdoc-8.0.0/lib/rdoc/stats/verbose.rb
|
|
225
|
+
- rdoc-8.0.0/lib/rdoc/store.rb
|
|
226
|
+
- rdoc-8.0.0/lib/rdoc/task.rb
|
|
227
|
+
- rdoc-8.0.0/lib/rdoc/text.rb
|
|
228
|
+
- rdoc-8.0.0/lib/rdoc/token_stream.rb
|
|
229
|
+
- rdoc-8.0.0/lib/rdoc/tom_doc.rb
|
|
230
|
+
- rdoc-8.0.0/lib/rdoc/version.rb
|
|
231
|
+
- rdoc-8.0.0/lib/rubygems_plugin.rb
|
|
232
|
+
- rdoc-8.0.0/man/ri.1
|
|
233
|
+
- rdoc-8.0.0/rdoc-logo.svg
|
|
234
|
+
- rdoc-8.0.0/rdoc.gemspec
|
|
235
|
+
homepage: https://rubygems.org/profiles/Andrey78
|
|
236
|
+
licenses:
|
|
237
|
+
- MIT
|
|
238
|
+
metadata: {}
|
|
239
|
+
rdoc_options: []
|
|
240
|
+
require_paths:
|
|
241
|
+
- lib
|
|
242
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
243
|
+
requirements:
|
|
244
|
+
- - ">="
|
|
245
|
+
- !ruby/object:Gem::Version
|
|
246
|
+
version: '0'
|
|
247
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
248
|
+
requirements:
|
|
249
|
+
- - ">="
|
|
250
|
+
- !ruby/object:Gem::Version
|
|
251
|
+
version: '0'
|
|
252
|
+
requirements: []
|
|
253
|
+
rubygems_version: 3.6.2
|
|
254
|
+
specification_version: 4
|
|
255
|
+
summary: Research test
|
|
256
|
+
test_files: []
|