sleeping_king_studios-docs 0.1.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.
Files changed (116) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +5 -0
  3. data/CODE_OF_CONDUCT.md +132 -0
  4. data/LICENSE +22 -0
  5. data/README.md +101 -0
  6. data/lib/sleeping_king_studios/docs/commands/generate.rb +268 -0
  7. data/lib/sleeping_king_studios/docs/commands/generators/base.rb +97 -0
  8. data/lib/sleeping_king_studios/docs/commands/generators/data_generator.rb +68 -0
  9. data/lib/sleeping_king_studios/docs/commands/generators/reference_generator.rb +59 -0
  10. data/lib/sleeping_king_studios/docs/commands/generators.rb +15 -0
  11. data/lib/sleeping_king_studios/docs/commands/installation/install_jekyll.rb +273 -0
  12. data/lib/sleeping_king_studios/docs/commands/installation/install_templates.rb +125 -0
  13. data/lib/sleeping_king_studios/docs/commands/installation/install_workflow.rb +121 -0
  14. data/lib/sleeping_king_studios/docs/commands/installation.rb +15 -0
  15. data/lib/sleeping_king_studios/docs/commands/parse.rb +51 -0
  16. data/lib/sleeping_king_studios/docs/commands/write_file.rb +89 -0
  17. data/lib/sleeping_king_studios/docs/commands.rb +14 -0
  18. data/lib/sleeping_king_studios/docs/data/base.rb +48 -0
  19. data/lib/sleeping_king_studios/docs/data/class_object.rb +119 -0
  20. data/lib/sleeping_king_studios/docs/data/constant_object.rb +161 -0
  21. data/lib/sleeping_king_studios/docs/data/metadata.rb +196 -0
  22. data/lib/sleeping_king_studios/docs/data/method_object.rb +555 -0
  23. data/lib/sleeping_king_studios/docs/data/module_object.rb +234 -0
  24. data/lib/sleeping_king_studios/docs/data/namespace_object.rb +375 -0
  25. data/lib/sleeping_king_studios/docs/data/root_object.rb +40 -0
  26. data/lib/sleeping_king_studios/docs/data/see_tags/base.rb +35 -0
  27. data/lib/sleeping_king_studios/docs/data/see_tags/class_method_tag.rb +99 -0
  28. data/lib/sleeping_king_studios/docs/data/see_tags/constant_tag.rb +60 -0
  29. data/lib/sleeping_king_studios/docs/data/see_tags/definition_tag.rb +52 -0
  30. data/lib/sleeping_king_studios/docs/data/see_tags/instance_method_tag.rb +69 -0
  31. data/lib/sleeping_king_studios/docs/data/see_tags/link_tag.rb +53 -0
  32. data/lib/sleeping_king_studios/docs/data/see_tags/namespace_item_tag.rb +56 -0
  33. data/lib/sleeping_king_studios/docs/data/see_tags/reference_tag.rb +92 -0
  34. data/lib/sleeping_king_studios/docs/data/see_tags/text_tag.rb +30 -0
  35. data/lib/sleeping_king_studios/docs/data/see_tags/unstructured_tag.rb +37 -0
  36. data/lib/sleeping_king_studios/docs/data/see_tags.rb +101 -0
  37. data/lib/sleeping_king_studios/docs/data/types/grammar.treetop +49 -0
  38. data/lib/sleeping_king_studios/docs/data/types/key_value_type.rb +54 -0
  39. data/lib/sleeping_king_studios/docs/data/types/parameterized_type.rb +57 -0
  40. data/lib/sleeping_king_studios/docs/data/types/parser.rb +143 -0
  41. data/lib/sleeping_king_studios/docs/data/types/type.rb +100 -0
  42. data/lib/sleeping_king_studios/docs/data/types.rb +19 -0
  43. data/lib/sleeping_king_studios/docs/data.rb +29 -0
  44. data/lib/sleeping_king_studios/docs/errors/file_already_exists.rb +22 -0
  45. data/lib/sleeping_king_studios/docs/errors/file_error.rb +30 -0
  46. data/lib/sleeping_king_studios/docs/errors/file_not_found.rb +22 -0
  47. data/lib/sleeping_king_studios/docs/errors/invalid_directory.rb +22 -0
  48. data/lib/sleeping_king_studios/docs/errors/invalid_file.rb +22 -0
  49. data/lib/sleeping_king_studios/docs/errors.rb +19 -0
  50. data/lib/sleeping_king_studios/docs/registry.rb +22 -0
  51. data/lib/sleeping_king_studios/docs/registry_query.rb +93 -0
  52. data/lib/sleeping_king_studios/docs/tasks/base.rb +20 -0
  53. data/lib/sleeping_king_studios/docs/tasks/generate.rb +39 -0
  54. data/lib/sleeping_king_studios/docs/tasks/installation/install_jekyll.rb +67 -0
  55. data/lib/sleeping_king_studios/docs/tasks/installation/install_templates.rb +39 -0
  56. data/lib/sleeping_king_studios/docs/tasks/installation/install_workflow.rb +53 -0
  57. data/lib/sleeping_king_studios/docs/tasks/installation.rb +8 -0
  58. data/lib/sleeping_king_studios/docs/tasks/update.rb +35 -0
  59. data/lib/sleeping_king_studios/docs/tasks.rb +14 -0
  60. data/lib/sleeping_king_studios/docs/templates/config.yml.erb +22 -0
  61. data/lib/sleeping_king_studios/docs/templates/deploy-pages.yml.erb +67 -0
  62. data/lib/sleeping_king_studios/docs/templates/includes/breadcrumbs.md +7 -0
  63. data/lib/sleeping_king_studios/docs/templates/includes/reference/attribute.md +23 -0
  64. data/lib/sleeping_king_studios/docs/templates/includes/reference/attributes/heading.md +15 -0
  65. data/lib/sleeping_king_studios/docs/templates/includes/reference/class.md +27 -0
  66. data/lib/sleeping_king_studios/docs/templates/includes/reference/constant.md +8 -0
  67. data/lib/sleeping_king_studios/docs/templates/includes/reference/constants/heading.md +6 -0
  68. data/lib/sleeping_king_studios/docs/templates/includes/reference/constants/inherited.md +4 -0
  69. data/lib/sleeping_king_studios/docs/templates/includes/reference/constants/overview.md +60 -0
  70. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/breadcrumbs.md +21 -0
  71. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/class_attributes.md +9 -0
  72. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/class_methods.md +9 -0
  73. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/constants.md +9 -0
  74. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/constructor.md +12 -0
  75. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/definitions.md +23 -0
  76. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/details.md +34 -0
  77. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/instance_attributes.md +9 -0
  78. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/instance_methods.md +17 -0
  79. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/overview.md +74 -0
  80. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/subclasses.md +10 -0
  81. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/table-of-contents/class_attributes.md +10 -0
  82. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/table-of-contents/class_methods.md +10 -0
  83. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/table-of-contents/constants.md +10 -0
  84. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/table-of-contents/instance_attributes.md +10 -0
  85. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/table-of-contents/instance_methods.md +10 -0
  86. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/table-of-contents/overview.md +41 -0
  87. data/lib/sleeping_king_studios/docs/templates/includes/reference/definitions/table-of-contents.md +27 -0
  88. data/lib/sleeping_king_studios/docs/templates/includes/reference/method.md +27 -0
  89. data/lib/sleeping_king_studios/docs/templates/includes/reference/methods/aliases.md +4 -0
  90. data/lib/sleeping_king_studios/docs/templates/includes/reference/methods/heading.md +14 -0
  91. data/lib/sleeping_king_studios/docs/templates/includes/reference/methods/inherited.md +4 -0
  92. data/lib/sleeping_king_studios/docs/templates/includes/reference/methods/overload.md +18 -0
  93. data/lib/sleeping_king_studios/docs/templates/includes/reference/methods/overloads.md +12 -0
  94. data/lib/sleeping_king_studios/docs/templates/includes/reference/methods/overview.md +41 -0
  95. data/lib/sleeping_king_studios/docs/templates/includes/reference/methods/parameters.md +31 -0
  96. data/lib/sleeping_king_studios/docs/templates/includes/reference/methods/post_overview.md +51 -0
  97. data/lib/sleeping_king_studios/docs/templates/includes/reference/methods/raises.md +14 -0
  98. data/lib/sleeping_king_studios/docs/templates/includes/reference/methods/return_types.md +9 -0
  99. data/lib/sleeping_king_studios/docs/templates/includes/reference/methods/returns.md +14 -0
  100. data/lib/sleeping_king_studios/docs/templates/includes/reference/methods/yields.md +42 -0
  101. data/lib/sleeping_king_studios/docs/templates/includes/reference/module.md +23 -0
  102. data/lib/sleeping_king_studios/docs/templates/includes/reference/namespace.md +33 -0
  103. data/lib/sleeping_king_studios/docs/templates/includes/reference/parent_link.md +6 -0
  104. data/lib/sleeping_king_studios/docs/templates/includes/reference/reference_link.md +7 -0
  105. data/lib/sleeping_king_studios/docs/templates/includes/reference/see_link.md +7 -0
  106. data/lib/sleeping_king_studios/docs/templates/includes/reference/type.md +14 -0
  107. data/lib/sleeping_king_studios/docs/templates/includes/reference/type_list.md +4 -0
  108. data/lib/sleeping_king_studios/docs/templates/includes/reference/types/array_type.md +1 -0
  109. data/lib/sleeping_king_studios/docs/templates/includes/reference/types/hash_type.md +1 -0
  110. data/lib/sleeping_king_studios/docs/templates/includes/reference/types/ordered_type.md +1 -0
  111. data/lib/sleeping_king_studios/docs/templates/pages/index.md.erb +22 -0
  112. data/lib/sleeping_king_studios/docs/templates/pages/reference.md.erb +14 -0
  113. data/lib/sleeping_king_studios/docs/templates/pages/versions.md.erb +13 -0
  114. data/lib/sleeping_king_studios/docs/version.rb +59 -0
  115. data/lib/sleeping_king_studios/docs.rb +27 -0
  116. metadata +243 -0
@@ -0,0 +1,17 @@
1
+ {% if include.definition.constructor and include.definition.instance_methods.size > 1 %}
2
+ ## Instance Methods
3
+ {% elsif include.definition.instance_methods.size > 0 %}
4
+ ## Instance Methods
5
+ {% endif %}
6
+
7
+ {% for instance_method in include.definition.instance_methods %}
8
+ {% unless instance_method.constructor %}
9
+ {% include reference/method.md name=instance_method.name path=instance_method.path type="instance" inherited=instance_method.inherited %}
10
+ {% endunless %}
11
+ {% endfor %}
12
+
13
+ {% if include.definition.constructor and include.definition.instance_methods.size > 1 %}
14
+ [Back To Top](#)
15
+ {% elsif include.definition.instance_methods.size > 0 %}
16
+ [Back To Top](#)
17
+ {% endif %}
@@ -0,0 +1,74 @@
1
+ ## Overview
2
+
3
+ {% if include.definition.metadata.deprecated %}
4
+ > **Deprecated.** {{ include.definition.metadata.deprecated }}
5
+ {% endif %}
6
+
7
+ {% if include.definition.metadata.abstract %}
8
+ > **This {{ include.definition.type }} is abstract.** {{ include.definition.metadata.abstract }}
9
+ {% endif %}
10
+
11
+ {% if include.definition.metadata.todos.size > 0 %}
12
+ {% for todo in include.definition.metadata.todos %}
13
+ > **Todo:** {{ todo }}
14
+ {% endfor %}
15
+ {% endif %}
16
+
17
+ {% if include.definition.metadata.notes.size > 0 %}
18
+ {% for note in include.definition.metadata.notes %}
19
+ > *Note:* {{ note }}
20
+ {% endfor %}
21
+ {% endif %}
22
+
23
+ {% if include.definition.short_description %}
24
+ {{ include.definition.short_description }}
25
+ {% endif %}
26
+
27
+ {% if include.definition.description %}
28
+ {{ include.definition.description }}
29
+ {% endif %}
30
+
31
+ {% if include.definition.metadata.examples.size > 0 %}
32
+ ### Examples
33
+
34
+ {% for example in include.definition.metadata.examples %}
35
+ {% if example.name.size > 0 %}**{{ example.name }}**{% endif %}
36
+ {% highlight ruby %}
37
+ {{ example.text }}
38
+ {% endhighlight %}
39
+ {% endfor %}
40
+ {% endif %}
41
+
42
+ {% if include.definition.metadata.see.size > 0 %}
43
+ ### See Also
44
+
45
+ {% for see in include.definition.metadata.see %}
46
+ - {% include reference/see_link.md see=see -%}
47
+ {% endfor %}
48
+ {% endif %}
49
+
50
+ {% if include.definition.metadata.authors.size > 0 %}
51
+ ### Author{% if include.definition.metadata.authors.size > 1 %}s{% endif %}
52
+
53
+ {% for author in include.definition.metadata.authors %}
54
+ - {{ author -}}
55
+ {% endfor %}
56
+ {% endif %}
57
+
58
+ {% if include.definition.metadata.since.size > 0 %}
59
+ ### Since
60
+
61
+ {% for since in include.definition.metadata.since %}
62
+ - {{ since -}}
63
+ {% endfor %}
64
+ {% endif %}
65
+
66
+ {% if include.definition.metadata.versions.size > 0 %}
67
+ ### Version{% if include.definition.metadata.versions.size > 1 %}s{% endif %}
68
+
69
+ {% for version in include.definition.metadata.versions %}
70
+ - {{ version -}}
71
+ {% endfor %}
72
+ {% endif %}
73
+
74
+ [Back To Top](#)
@@ -0,0 +1,10 @@
1
+ {% if include.definition.direct_subclasses.size > 0 %}
2
+ ## Direct Subclasses
3
+
4
+ {% for subclass in include.definition.direct_subclasses -%}
5
+ {% include reference/reference_link.md label=subclass.name path=subclass.path -%}
6
+ {% unless forloop.last %}, {% endunless %}
7
+ {%- endfor %}
8
+
9
+ [Back To Top](#)
10
+ {% endif %}
@@ -0,0 +1,10 @@
1
+ {% if include.definition.class_attributes.size > 0 %}
2
+ <li>
3
+ <a href="#class-attributes">Class Attributes</a>
4
+ <ul style="margin-bottom: 0px;">
5
+ {% for attribute in include.definition.class_attributes %}
6
+ <li><a href="#class-attribute-{{ attribute.slug | replace: "=", "--equals" }}">{{ attribute.name }}</a></li>
7
+ {% endfor %}
8
+ </ul>
9
+ </li>
10
+ {% endif %}
@@ -0,0 +1,10 @@
1
+ {% if include.definition.class_methods.size > 0 %}
2
+ <li>
3
+ <a href="#class-methods">Class Methods</a>
4
+ <ul style="margin-bottom: 0px;">
5
+ {% for method in include.definition.class_methods %}
6
+ <li><a href="#class-method-{{ method.slug | replace: "=", "--equals" | replace: "?", "--predicate" }}">{{ method.name }}</a></li>
7
+ {% endfor %}
8
+ </ul>
9
+ </li>
10
+ {% endif %}
@@ -0,0 +1,10 @@
1
+ {% if include.definition.constants.size > 0 %}
2
+ <li>
3
+ <a href="#constants">Constants</a>
4
+ <ul style="margin-bottom: 0px;">
5
+ {% for constant in include.definition.constants %}
6
+ <li><a href="#constant-{{ constant.slug }}">{{ constant.name }}</a></li>
7
+ {% endfor %}
8
+ </ul>
9
+ </li>
10
+ {% endif %}
@@ -0,0 +1,10 @@
1
+ {% if include.definition.instance_attributes.size > 0 %}
2
+ <li>
3
+ <a href="#instance-attributes">Instance Attributes</a>
4
+ <ul style="margin-bottom: 0px;">
5
+ {% for attribute in include.definition.instance_attributes %}
6
+ <li><a href="#instance-attribute-{{ attribute.slug | replace: "=", "--equals" }}">{{ attribute.name }}</a></li>
7
+ {% endfor %}
8
+ </ul>
9
+ </li>
10
+ {% endif %}
@@ -0,0 +1,10 @@
1
+ {% if include.definition.instance_methods.size > 0 %}
2
+ <li>
3
+ <a href="#instance-methods">Instance Methods</a>
4
+ <ul style="margin-bottom: 0px;">
5
+ {% for method in include.definition.instance_methods %}
6
+ <li><a href="#instance-method-{{ method.slug | replace: "=", "--equals" | replace: "?", "--predicate" }}">{{ method.name }}</a></li>
7
+ {% endfor %}
8
+ </ul>
9
+ </li>
10
+ {% endif %}
@@ -0,0 +1,41 @@
1
+ <li>
2
+ <a href="#overview">Overview</a>
3
+ {% assign metadata = include.definition.metadata %}
4
+ {% if metadata.examples.size > 0 or metadata.see.size > 0 or metadata.authors.size > 0 or metadata.since.size > 0 or metadata.versions.size > 0 %}
5
+ <ul style="margin-bottom: 0px;">
6
+ {% if metadata.examples.size > 0 %}
7
+ <li>
8
+ <a href="#examples">Examples</a>
9
+ </li>
10
+ {% endif %}
11
+ {% if metadata.see.size > 0 %}
12
+ <li>
13
+ <a href="#see-also">See Also</a>
14
+ </li>
15
+ {% endif %}
16
+ {% if metadata.authors.size > 1 %}
17
+ <li>
18
+ <a href="#authors">Authors</a>
19
+ </li>
20
+ {% elsif metadata.authors.size > 0 %}
21
+ <li>
22
+ <a href="#author">Author</a>
23
+ </li>
24
+ {% endif %}
25
+ {% if metadata.since.size > 0 %}
26
+ <li>
27
+ <a href="#since">Since</a>
28
+ </li>
29
+ {% endif %}
30
+ {% if metadata.versions.size > 1 %}
31
+ <li>
32
+ <a href="#versions">Versions</a>
33
+ </li>
34
+ {% elsif metadata.versions.size > 0 %}
35
+ <li>
36
+ <a href="#version">Version</a>
37
+ </li>
38
+ {% endif %}
39
+ </ul>
40
+ {% endif %}
41
+ </li>
@@ -0,0 +1,27 @@
1
+ ## Table Of Contents
2
+
3
+ <ul>
4
+ {% include reference/definitions/table-of-contents/overview.md definition=include.definition %}
5
+
6
+ {% if include.definition.direct_subclasses.size > 0 %}
7
+ <li><a href="#direct-subclasses">Direct Subclasses</a></li>
8
+ {% endif %}
9
+
10
+ {% if include.definition.defined_classes.size > 0 or include.definitions.defined_modules.size > 0 %}
11
+ <li><a href="#defined-under-namespace">Defined Under Namespace</a></li>
12
+ {% endif %}
13
+
14
+ {% include reference/definitions/table-of-contents/constants.md definition=include.definition %}
15
+
16
+ {% include reference/definitions/table-of-contents/class_attributes.md definition=include.definition %}
17
+
18
+ {% include reference/definitions/table-of-contents/class_methods.md definition=include.definition %}
19
+
20
+ {% if include.definition.constructor %}
21
+ <li><a href="#constructor">Constructor</a></li>
22
+ {% endif %}
23
+
24
+ {% include reference/definitions/table-of-contents/instance_attributes.md definition=include.definition %}
25
+
26
+ {% include reference/definitions/table-of-contents/instance_methods.md definition=include.definition %}
27
+ </ul>
@@ -0,0 +1,27 @@
1
+ {% assign method = site.methods | where: "data_path", include.path | where: "version", page.version | first %}
2
+ {% if method %}
3
+ {% capture prefix %}{{ include.type }}-method{% endcapture %}
4
+ {% capture heading_id %}{{ prefix }}-{{ method.slug | replace: "=", "--equals" | replace: "?", "--predicate" }}{% endcapture %}
5
+
6
+ {% include reference/methods/heading.md heading_id=heading_id method=method type=include.type %}
7
+
8
+ {% include reference/methods/aliases.md method=method %}
9
+
10
+ {% include reference/methods/inherited.md inherited=include.inherited method=method %}
11
+
12
+ {% include reference/methods/overview.md heading_id=heading_id method=method %}
13
+
14
+ {% include reference/methods/overloads.md heading_id=heading_id method=method %}
15
+
16
+ {% include reference/methods/parameters.md heading_id=heading_id method=method %}
17
+
18
+ {% include reference/methods/yields.md heading_id=heading_id method=method %}
19
+
20
+ {% include reference/methods/returns.md heading_id=heading_id method=method %}
21
+
22
+ {% include reference/methods/raises.md heading_id=heading_id method=method %}
23
+
24
+ {% include reference/methods/post_overview.md heading_id=heading_id method=method %}
25
+ {% else %}
26
+ ### Missing Method: {{ include.path }} @ {{ page.version }}
27
+ {% endif %}
@@ -0,0 +1,4 @@
1
+ {% if include.method.aliases.size > 0 %}
2
+ *Also known as:*
3
+ {% for alias in include.method.aliases %}<code>{{ alias }}</code>{%- unless forloop.last %}, {% endunless -%}{% endfor %}
4
+ {% endif %}
@@ -0,0 +1,14 @@
1
+ {% capture char %}{% if include.type == "class" %}.{% else %}#{% endif %}{% endcapture %}
2
+ {% capture abstract %}{% if include.method.metadata.abstract %} <small>(abstract)</small>{% endif %}{% endcapture %}
3
+ {% capture deprecated %}{% if include.method.metadata.deprecated %} <small>(deprecated)</small>{% endif %}{% endcapture %}
4
+
5
+ <h3>
6
+ {% if include.method.overloads.size > 0 %}
7
+ {% for overload in method.overloads %}
8
+ <code>{{ char }}{{ overload.signature }} => {% include reference/methods/return_types.md method=overload -%}{{ abstract }}{{ deprecated }}</code>{% unless forloop.last %}<br />{% endunless %}
9
+ {%- endfor -%}
10
+ {%- else -%}
11
+ <code>{{ char }}{{ include.method.signature }} => {% include reference/methods/return_types.md method=include.method -%}{{ abstract }}{{ deprecated }}</code>
12
+ {% endif -%}
13
+ </h3>
14
+ {: #{{ include.heading_id }} }
@@ -0,0 +1,4 @@
1
+ {% if include.inherited %}
2
+ {% if include.type == "class" %}Extended{% else %}Inherited{% endif %} From
3
+ : {% include reference/parent_link.md parent_path=include.method.parent_path %}
4
+ {% endif %}
@@ -0,0 +1,18 @@
1
+ {% capture overload_id %}{{ include.heading_id }}--overload-{{ include.index }}{% endcapture %}
2
+
3
+ <h5>
4
+ <code>{{ char }}{{ include.overload.signature }} => {% include reference/methods/return_types.md method=include.overload -%}</code>
5
+ </h5>
6
+ {: #{{ overload_id }} }
7
+
8
+ {% include reference/methods/overview.md heading_id=overload_id method=overload overload=true %}
9
+
10
+ {% include reference/methods/parameters.md heading_id=overload_id method=overload overload=true %}
11
+
12
+ {% include reference/methods/yields.md heading_id=overload_id method=overload overload=true %}
13
+
14
+ {% include reference/methods/returns.md heading_id=overload_id method=overload overload=true %}
15
+
16
+ {% include reference/methods/raises.md heading_id=overload_id method=overload overload=true %}
17
+
18
+ {% include reference/methods/post_overview.md heading_id=overload_id method=overload overload=true %}
@@ -0,0 +1,12 @@
1
+ {% if include.method.overloads.size > 0 %}
2
+ #### Overloads
3
+ {: #{{ include.heading_id }}--overloads }
4
+
5
+ {% for overload in include.method.overloads %}
6
+ <div class="overload" style="margin-left: 2rem;">
7
+ {% assign index = forloop.index %}
8
+ {% capture rendered %}{% include reference/methods/overload.md heading_id=heading_id index=index overload=overload %}{% endcapture %}
9
+ {{ rendered | strip | markdownify }}
10
+ </div>
11
+ {% endfor %}
12
+ {% endif %}
@@ -0,0 +1,41 @@
1
+ {% if include.method.metadata.deprecated %}
2
+ > **Deprecated.** {{ include.method.metadata.deprecated }}
3
+ {% endif %}
4
+
5
+ {% if include.method.metadata.abstract %}
6
+ > **This method is abstract.** {{ include.method.metadata.abstract }}
7
+ {% endif %}
8
+
9
+ {% if include.method.metadata.todos.size > 0 %}
10
+ {% for todo in include.method.metadata.todos %}
11
+ > **Todo:** {{ todo }}
12
+ {% endfor %}
13
+ {% endif %}
14
+
15
+ {% if include.method.metadata.notes.size > 0 %}
16
+ {% for note in include.method.metadata.notes %}
17
+ > *Note:* {{ note }}
18
+ {% endfor %}
19
+ {% endif %}
20
+
21
+ {% if include.method.short_description %}
22
+ {{ include.method.short_description }}
23
+ {% endif %}
24
+
25
+ {% if include.method.description %}
26
+ {{ include.method.description }}
27
+ {% endif %}
28
+
29
+ {% if include.method.metadata.examples.size > 0 %}
30
+ {% if include.overload %}
31
+ ###### Examples
32
+ {: #{{ include.heading_id }}--examples }
33
+ {% else %}
34
+ #### Examples
35
+ {: #{{ include.heading_id }}--examples }
36
+ {% endif %}
37
+ {% for example in include.method.metadata.examples %}
38
+ {% if example.name.size > 0 %}**{{ example.name }}**{% endif %}
39
+ {% highlight ruby %}{{ example.text }}{% endhighlight %}
40
+ {% endfor %}
41
+ {% endif %}
@@ -0,0 +1,31 @@
1
+ {% if include.method.params %}
2
+ {% if include.overload %}
3
+ ###### Parameters
4
+ {: #{{ include.heading_id }}--parameters }
5
+ {% else %}
6
+ #### Parameters
7
+ {: #{{ include.heading_id }}--parameters }
8
+ {% endif %}
9
+ <ul>
10
+ {% for param in include.method.params -%}
11
+ <li><strong>{{ param.name }}</strong> {% if param.type.size > 0 %}({%- include reference/type_list.md types=param.type -%}){% endif %}{% if param.description.size > 0 %} — {{ param.description }}{% endif %}</li>
12
+ {%- endfor %}
13
+ </ul>
14
+ {% endif %}
15
+
16
+ {% if include.method.options.size > 0 %}
17
+ {% for options in include.method.options %}
18
+ {% if include.overload %}
19
+ ###### Options Hash ({{ options.name }})
20
+ {: #{{ include.heading_id }}--options-{{ options.name }} }
21
+ {% else %}
22
+ #### Options Hash ({{ options.name }})
23
+ {: #{{ include.heading_id }}--options-{{ options.name }} }
24
+ {% endif %}
25
+ <ul>
26
+ {% for option in options.opts -%}
27
+ <li><strong>{{ option.name -}}</strong> {% if option.type.size > 0 %}({%- include reference/type_list.md types=option.type -%}){% endif %}{% if option.description.size > 0 %} — {{ option.description }}{% endif %}</li>
28
+ {%- endfor %}
29
+ </ul>
30
+ {% endfor %}
31
+ {% endif %}
@@ -0,0 +1,51 @@
1
+ {% if include.method.metadata.see.size > 0 %}
2
+ {% if include.overload %}
3
+ ###### See Also
4
+ {: #{{ include.heading_id }}--see-also }
5
+ {% else %}
6
+ #### See Also
7
+ {: #{{ include.heading_id }}--see-also }
8
+ {% endif %}
9
+ {% for see in include.method.metadata.see %}
10
+ - {% include reference/see_link.md see=see -%}
11
+ {% endfor %}
12
+ {% endif %}
13
+
14
+ {% if include.method.metadata.authors.size > 0 %}
15
+ {% if include.overload %}
16
+ ###### Author{% if include.method.metadata.authors.size > 1 %}s{% endif %}
17
+ {: #{{ include.heading_id }}--authors }
18
+ {% else %}
19
+ #### Author{% if include.method.metadata.authors.size > 1 %}s{% endif %}
20
+ {: #{{ include.heading_id }}--authors }
21
+ {% endif %}
22
+ {% for author in include.method.metadata.authors %}
23
+ - {{ author -}}
24
+ {% endfor %}
25
+ {% endif %}
26
+
27
+ {% if include.method.metadata.since.size > 0 %}
28
+ {% if include.overload %}
29
+ ###### Since
30
+ {: #{{ include.heading_id }}--since }
31
+ {% else %}
32
+ #### Since
33
+ {: #{{ include.heading_id }}--since }
34
+ {% endif %}
35
+ {% for since in include.method.metadata.since %}
36
+ - {{ since -}}
37
+ {% endfor %}
38
+ {% endif %}
39
+
40
+ {% if include.method.metadata.versions.size > 0 %}
41
+ {% if include.overload %}
42
+ ###### Version{% if include.method.metadata.versions.size > 1 %}s{% endif %}
43
+ {: #{{ include.heading_id }}--versions }
44
+ {% else %}
45
+ #### Version{% if include.method.metadata.versions.size > 1 %}s{% endif %}
46
+ {: #{{ include.heading_id }}--versions }
47
+ {% endif %}
48
+ {% for version in include.method.metadata.versions %}
49
+ - {{ version -}}
50
+ {% endfor %}
51
+ {% endif %}
@@ -0,0 +1,14 @@
1
+ {% if include.method.raises.size > 0 %}
2
+ {% if include.overload %}
3
+ ###### Raises
4
+ {: #{{ include.heading_id }}--raises }
5
+ {% else %}
6
+ #### Raises
7
+ {: #{{ include.heading_id }}--raises }
8
+ {% endif %}
9
+ <ul>
10
+ {% for raised in include.method.raises -%}
11
+ <li>({%- include reference/type_list.md types=raised.type -%}){% if raised.description.size > 0 %} — {{ raised.description }}{% endif %}</li>
12
+ {%- endfor %}
13
+ </ul>
14
+ {% endif %}
@@ -0,0 +1,9 @@
1
+ {%- if include.method.constructor -%}
2
+ {{ include.method.returns.first.type.first.name | default: "Object" }}
3
+ {%- elsif include.method.returns.size > 0 -%}
4
+ {% for returns in include.method.returns %}
5
+ {%- include reference/type_list.md types=returns.type -%}{%- unless forloop.last -%}, {% endunless -%}
6
+ {% endfor %}
7
+ {%- else -%}
8
+ Object
9
+ {%- endif -%}
@@ -0,0 +1,14 @@
1
+ {% if include.method.returns.size > 0 %}
2
+ {% if include.overload %}
3
+ ###### Returns
4
+ {: #{{ include.heading_id }}--returns }
5
+ {% else %}
6
+ #### Returns
7
+ {: #{{ include.heading_id }}--returns }
8
+ {% endif %}
9
+ <ul>
10
+ {% for return in include.method.returns -%}
11
+ <li>({%- include reference/type_list.md types=return.type -%}){% if return.description.size > 0 %} — {{ return.description }}{% endif %}</li>
12
+ {%- endfor %}
13
+ </ul>
14
+ {% endif %}
@@ -0,0 +1,42 @@
1
+ {% if include.method.yields.size > 0 %}
2
+ {% if include.overload %}
3
+ ###### Yields
4
+ {: #{{ include.heading_id }}--yields }
5
+ {% else %}
6
+ #### Yields
7
+ {: #{{ include.heading_id }}--yields }
8
+ {% endif %}
9
+ {% for yielded in include.method.yields %}
10
+ - {% if yielded.parameters.size > 0 %}({% for parameter in yielded.parameters %}{{ parameter }}{% unless forloop.last %}, {% endunless %}{% endfor %}){% if yielded.description.size > 0 %} — {% endif %}{% endif %}{% if yielded.description.size > 0 %}{{ yielded.description }}{% endif -%}
11
+ {% endfor %}
12
+ {% endif %}
13
+
14
+ {% if include.method.yield_params.size > 0 %}
15
+ {% if include.overload %}
16
+ ###### Yield Parameters
17
+ {: #{{ include.heading_id }}--yield-parameters }
18
+ {% else %}
19
+ #### Yield Parameters
20
+ {: #{{ include.heading_id }}--yield-parameters }
21
+ {% endif %}
22
+ <ul>
23
+ {% for param in include.method.yield_params -%}
24
+ <li><strong>{{ param.name -}}</strong> {% if param.type.size > 0 %}({%- include reference/type_list.md types=param.type -%}){% endif %}{% if param.description.size > 0 %} — {{ param.description }}{% endif %}</li>
25
+ {%- endfor %}
26
+ </ul>
27
+ {% endif %}
28
+
29
+ {% if include.method.yield_returns.size > 0 %}
30
+ {% if include.overload %}
31
+ ###### Yield Returns
32
+ {: #{{ include.heading_id }}--yield-returns }
33
+ {% else %}
34
+ #### Yield Returns
35
+ {: #{{ include.heading_id }}--yield-returns }
36
+ {% endif %}
37
+ <ul>
38
+ {% for return in include.method.yield_returns -%}
39
+ <li>{% if return.type.size > 0 %}({%- include reference/type_list.md types=return.type -%}){% endif %}{% if return.type.size > 0 and return.description.size > 0 %} — {% endif %}{% if return.description.size > 0 %}{{ return.description }}{% endif %}</li>
40
+ {%- endfor %}
41
+ </ul>
42
+ {% endif %}
@@ -0,0 +1,23 @@
1
+ {% assign definition = site.modules | where: "data_path", page.data_path | where: "version", page.version | first %}
2
+
3
+ # Module: {{ definition.name }}
4
+
5
+ {% include reference/definitions/details.md definition=definition %}
6
+
7
+ {% include reference/definitions/table-of-contents.md definition=definition %}
8
+
9
+ {% include reference/definitions/overview.md definition=definition %}
10
+
11
+ {% include reference/definitions/definitions.md definition=definition %}
12
+
13
+ {% include reference/definitions/constants.md definition=definition %}
14
+
15
+ {% include reference/definitions/class_attributes.md definition=definition %}
16
+
17
+ {% include reference/definitions/class_methods.md definition=definition %}
18
+
19
+ {% include reference/definitions/instance_attributes.md definition=definition %}
20
+
21
+ {% include reference/definitions/instance_methods.md definition=definition %}
22
+
23
+ {% include reference/definitions/breadcrumbs.md definition=definition %}
@@ -0,0 +1,33 @@
1
+ {% if include.label %}
2
+ {% assign reference_label = include.namespace.name | split: "::" | last %}
3
+ {% include reference/reference_link.md label=reference_label path=include.namespace.data_path -%}
4
+ {% if include.namespace.type == "class" %}
5
+ {% assign parent_class = include.namespace.inherited_classes.first %}
6
+ &lt; {% if parent_class %}{% include reference/reference_link.md label=parent_class.name path=parent_class.path %}{% else %}Object{% endif %}
7
+ {% endif %}
8
+ {% endif %}
9
+
10
+ {% assign empty_array = "" | split: "," %}
11
+ {% assign defined_classes = include.namespace.defined_classes | default: empty_array %}
12
+ {% assign defined_modules = include.namespace.defined_modules | default: empty_array %}
13
+ {% assign definitions = defined_classes | concat: defined_modules | sort: "name" %}
14
+ {% if definitions.size > 0 %}
15
+ <ul style="margin-bottom: 0px;">
16
+ {% for definition in definitions %}
17
+ <li>
18
+ {% capture data_path %}
19
+ {{- include.namespace.data_path -}}
20
+ {% if include.namespace.data_path.size > 0 %}/{% endif %}
21
+ {{- definition.slug -}}
22
+ {% endcapture %}
23
+ {% assign matched = site.modules | where: "data_path", data_path | where: "version", include.namespace.version | first %}
24
+ {% unless matched %}
25
+ {% assign matched = site.classes | where: "data_path", data_path | where: "version", include.namespace.version | first %}
26
+ {% endunless %}
27
+ {% include reference/namespace.md label=true namespace=matched -%}
28
+ </li>
29
+ {% endfor %}
30
+ </ul>
31
+ {% else %}
32
+ {% unless include.label %}This namespace does not define any classes or modules.{% endunless %}
33
+ {% endif %}
@@ -0,0 +1,6 @@
1
+ {% capture parent_link %}
2
+ {% assign parent_definition = site.classes | where: "data_path", include.parent_path | where: "version", page.version | first %}
3
+ {% unless parent_definition %}{% assign parent_definition = site.modules | where: "data_path", include.parent_path | where: "version", page.version | first %}{% endunless %}
4
+ {% if parent_definition %}{% include reference/reference_link.md label=parent_definition.name path=parent_definition.data_path -%}{% else %}Object{% endif %}
5
+ {% endcapture %}
6
+ {{ parent_link | strip }}
@@ -0,0 +1,7 @@
1
+ {% capture version_path %}{% unless page.version == "*" %}/versions/{{ page.version }}{% endunless %}{% endcapture %}
2
+ {%- if include.path %}
3
+ {%- capture url %}{{ site.baseurl }}{{ version_path | strip }}/reference/{{ include.path }}{% endcapture -%}
4
+ <a href="{{ url }}">{{ include.label }}</a>
5
+ {%- else -%}
6
+ {{ include.label -}}
7
+ {% endif -%}
@@ -0,0 +1,7 @@
1
+ {%- if include.see.type == 'link' -%}
2
+ [{{ include.see.label }}]({{include.see.path}}) {{ include.see.text }}
3
+ {%- elsif include.see.type == 'reference' -%}
4
+ {% include reference/reference_link.md label=include.see.label path=include.see.path %} {{ include.see.text }}
5
+ {%- else -%}
6
+ {{ include.see.text }}
7
+ {%- endif -%}
@@ -0,0 +1,14 @@
1
+ {% capture formatted %}
2
+ {%- if include.type.items %}
3
+ {%- if include.type.ordered %}
4
+ {%- include reference/types/ordered_type.md type=include.type -%}
5
+ {%- else -%}
6
+ {%- include reference/types/array_type.md type=include.type -%}
7
+ {%- endif -%}
8
+ {% elsif include.type.keys %}
9
+ {%- include reference/types/hash_type.md type=include.type -%}
10
+ {% else %}
11
+ {%- include reference/reference_link.md label=include.type.name path=include.type.path -%}
12
+ {% endif -%}
13
+ {% endcapture %}
14
+ {{- formatted | strip -}}
@@ -0,0 +1,4 @@
1
+ {% capture formatted %}
2
+ {% for type in include.types %}{% include reference/type.md type=type -%}{%- unless forloop.last %}, {% endunless -%}{% endfor %}
3
+ {% endcapture %}
4
+ {{- formatted | strip -}}
@@ -0,0 +1 @@
1
+ {%- include reference/reference_link.md label=include.type.name path=include.type.path -%}&lt;{% include reference/type_list.md types=include.type.items %}&gt;
@@ -0,0 +1 @@
1
+ {%- include reference/reference_link.md label=include.type.name path=include.type.path -%}&#123;{% include reference/type_list.md types=include.type.keys %} => {% include reference/type_list.md types=include.type.values %}&#125;
@@ -0,0 +1 @@
1
+ {%- include reference/reference_link.md label=include.type.name path=include.type.path -%}&lt;({% include reference/type_list.md types=include.type.items %})&gt;