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,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'sleeping_king_studios/docs/commands/generate'
4
+ require 'sleeping_king_studios/docs/tasks'
5
+ require 'sleeping_king_studios/docs/tasks/base'
6
+
7
+ module SleepingKingStudios::Docs::Tasks
8
+ # CLI task for generating documentation files.
9
+ class Generate < SleepingKingStudios::Docs::Tasks::Base
10
+ namespace 'docs'
11
+
12
+ desc 'generate', 'Generates documentation files for the project'
13
+ option 'version',
14
+ type: :string,
15
+ desc: 'The code version for the generated documentation',
16
+ default: nil
17
+ option 'docs_path',
18
+ desc: 'The relative path to the docs folder',
19
+ default: './docs'
20
+ option 'dry_run',
21
+ type: :boolean,
22
+ default: false,
23
+ desc: 'If true, does not make any changes to the filesystem'
24
+ option 'force',
25
+ type: :boolean,
26
+ default: false,
27
+ desc: 'If true, overwrites any existing files'
28
+ option 'verbose',
29
+ type: :boolean,
30
+ default: true,
31
+ desc: 'if true, prints status messages to STDOUT'
32
+ # Generates documentation files for the project.
33
+ def generate
34
+ SleepingKingStudios::Docs::Commands::Generate
35
+ .new(**tools.hash_tools.symbolize_keys(options))
36
+ .call
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,67 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'sleeping_king_studios/docs/commands/installation/install_jekyll'
4
+ require 'sleeping_king_studios/docs/tasks/base'
5
+ require 'sleeping_king_studios/docs/tasks/installation'
6
+
7
+ module SleepingKingStudios::Docs::Tasks::Installation
8
+ # CLI task for installing the Jekyll application.
9
+ class InstallJekyll < SleepingKingStudios::Docs::Tasks::Base
10
+ namespace 'docs'
11
+
12
+ desc 'install', 'Install the Jekyll application'
13
+ option 'description',
14
+ type: :string,
15
+ optional: true,
16
+ desc: 'A short description of the documented library.'
17
+ option 'docs_path',
18
+ desc: 'The relative path to the docs folder',
19
+ default: './docs'
20
+ option 'dry_run',
21
+ type: :boolean,
22
+ default: false,
23
+ desc: 'If true, does not make any changes to the filesystem'
24
+ option 'name',
25
+ type: :string,
26
+ optional: true,
27
+ desc: 'The name of the documented library.'
28
+ option 'repository',
29
+ type: :string,
30
+ optional: true,
31
+ desc: 'The URL of the library repository.'
32
+ option 'root_path',
33
+ type: :string,
34
+ optional: true,
35
+ desc: 'The root path for the library'
36
+ option 'verbose',
37
+ type: :boolean,
38
+ default: true,
39
+ desc: 'if true, prints status messages to STDOUT'
40
+ # Install the Jekyll application
41
+ def install
42
+ SleepingKingStudios::Docs::Commands::Installation::InstallJekyll
43
+ .new(**constructor_options)
44
+ .call(**command_options)
45
+ end
46
+
47
+ private
48
+
49
+ def command_options
50
+ %w[docs_path root_path]
51
+ .reduce({}) do |hsh, key|
52
+ next hsh unless options.key?(key)
53
+
54
+ hsh.merge(key.intern => options[key])
55
+ end
56
+ end
57
+
58
+ def constructor_options
59
+ %w[description dry_run name repository verbose]
60
+ .reduce({}) do |hsh, key|
61
+ next hsh unless options.key?(key)
62
+
63
+ hsh.merge(key.intern => options[key])
64
+ end
65
+ end
66
+ end
67
+ end
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'sleeping_king_studios/docs/commands/installation/install_templates'
4
+ require 'sleeping_king_studios/docs/tasks/base'
5
+ require 'sleeping_king_studios/docs/tasks/installation'
6
+
7
+ module SleepingKingStudios::Docs::Tasks::Installation
8
+ # CLI task for installing Jekyll templates for a library.
9
+ class InstallTemplates < SleepingKingStudios::Docs::Tasks::Base
10
+ namespace 'docs:install'
11
+
12
+ desc 'templates', 'Installs or updates the Jekyll templates'
13
+ option 'docs_path',
14
+ desc: 'The relative path to the docs folder',
15
+ default: './docs'
16
+ option 'dry_run',
17
+ type: :boolean,
18
+ default: false,
19
+ desc: 'If true, does not make any changes to the filesystem'
20
+ option 'force',
21
+ type: :boolean,
22
+ default: false,
23
+ desc: 'If true, overwrites existing template files'
24
+ option 'verbose',
25
+ type: :boolean,
26
+ default: true,
27
+ desc: 'if true, prints status messages to STDOUT'
28
+ # Installs or updates the Jekyll templates
29
+ def templates
30
+ SleepingKingStudios::Docs::Commands::Installation::InstallTemplates
31
+ .new(
32
+ dry_run: options['dry_run'],
33
+ force: options['force'],
34
+ verbose: options['verbose']
35
+ )
36
+ .call(docs_path: options['docs_path'])
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'sleeping_king_studios/docs/commands/installation/install_workflow'
4
+ require 'sleeping_king_studios/docs/tasks/base'
5
+ require 'sleeping_king_studios/docs/tasks/installation'
6
+
7
+ module SleepingKingStudios::Docs::Tasks::Installation
8
+ # CLI task for installing the GitHub pages CI workflow.
9
+ class InstallWorkflow < SleepingKingStudios::Docs::Tasks::Base
10
+ namespace 'docs:install'
11
+
12
+ desc 'workflow', 'Installs the GitHub pages CI workflow'
13
+ option 'dry_run',
14
+ type: :boolean,
15
+ default: false,
16
+ desc: 'If true, does not make any changes to the filesystem'
17
+ option 'force',
18
+ type: :boolean,
19
+ default: false,
20
+ desc: 'If true, overwrites existing template files'
21
+ option 'root_path',
22
+ type: :string,
23
+ optional: true,
24
+ desc: 'The root path for the library'
25
+ option 'verbose',
26
+ type: :boolean,
27
+ default: true,
28
+ desc: 'if true, prints status messages to STDOUT'
29
+ # Installs the GitHub pages CI workflow.
30
+ def workflow
31
+ SleepingKingStudios::Docs::Commands::Installation::InstallWorkflow
32
+ .new(**constructor_options)
33
+ .call(**command_options)
34
+ end
35
+
36
+ private
37
+
38
+ def command_options
39
+ return {} unless options.key?('root_path')
40
+
41
+ { root_path: options['root_path'] }
42
+ end
43
+
44
+ def constructor_options
45
+ %w[dry_run force verbose]
46
+ .reduce({}) do |hsh, key|
47
+ next hsh unless options.key?(key)
48
+
49
+ hsh.merge(key.intern => options[key])
50
+ end
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'sleeping_king_studios/docs/tasks'
4
+
5
+ module SleepingKingStudios::Docs::Tasks
6
+ # Namespace for CLI tasks for installing and updating the Jekyll docs.
7
+ module Installation; end
8
+ end
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'sleeping_king_studios/docs/commands/generate'
4
+ require 'sleeping_king_studios/docs/tasks'
5
+ require 'sleeping_king_studios/docs/tasks/base'
6
+
7
+ module SleepingKingStudios::Docs::Tasks
8
+ # CLI task for updating documentation files.
9
+ class Update < SleepingKingStudios::Docs::Tasks::Base
10
+ namespace 'docs'
11
+
12
+ desc 'update', 'Updates the documentation files for the project'
13
+ option 'version',
14
+ type: :string,
15
+ desc: 'The code version for the generated documentation',
16
+ default: nil
17
+ option 'docs_path',
18
+ desc: 'The relative path to the docs folder',
19
+ default: './docs'
20
+ option 'dry_run',
21
+ type: :boolean,
22
+ default: false,
23
+ desc: 'If true, does not make any changes to the filesystem'
24
+ option 'verbose',
25
+ type: :boolean,
26
+ default: true,
27
+ desc: 'if true, prints status messages to STDOUT'
28
+ # Updates the documentation files for the project.
29
+ def update
30
+ SleepingKingStudios::Docs::Commands::Generate
31
+ .new(force: true, **tools.hash_tools.symbolize_keys(options))
32
+ .call
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'sleeping_king_studios/docs'
4
+
5
+ module SleepingKingStudios::Docs
6
+ # Namespace for CLI tasks, powered by Thor.
7
+ module Tasks; end
8
+ end
9
+
10
+ require 'sleeping_king_studios/docs/tasks/generate'
11
+ require 'sleeping_king_studios/docs/tasks/installation/install_jekyll'
12
+ require 'sleeping_king_studios/docs/tasks/installation/install_templates'
13
+ require 'sleeping_king_studios/docs/tasks/installation/install_workflow'
14
+ require 'sleeping_king_studios/docs/tasks/update'
@@ -0,0 +1,22 @@
1
+ ---
2
+ collections:
3
+ classes:
4
+ output: false
5
+ constants:
6
+ output: false
7
+ methods:
8
+ output: false
9
+ modules:
10
+ output: false
11
+ namespaces:
12
+ output: false
13
+ defaults:
14
+ - scope:
15
+ path: ''
16
+ type: 'pages'
17
+ values:
18
+ encoding: 'utf-8'
19
+ layout: 'default'
20
+ title: '<%= name %>'
21
+ description: |
22
+ <%= description %>
@@ -0,0 +1,67 @@
1
+ name: Deploy Jekyll site to Pages
2
+
3
+ on:
4
+ push: {}
5
+ pull_request: {}
6
+ workflow_dispatch: {}
7
+
8
+ permissions:
9
+ contents: read
10
+ pages: write
11
+ id-token: write
12
+
13
+ # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
14
+ # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
15
+ concurrency:
16
+ group: "pages"
17
+ cancel-in-progress: false
18
+
19
+ jobs:
20
+ build:
21
+ runs-on: ubuntu-latest
22
+
23
+ steps:
24
+ - name: Checkout
25
+ uses: actions/checkout@v4
26
+
27
+ - name: Set up Ruby
28
+ uses: ruby/setup-ruby@v1
29
+ with:
30
+ ruby-version: '<%= ruby_version %>'
31
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
32
+
33
+ - name: Setup Pages
34
+ id: pages
35
+ uses: actions/configure-pages@v4
36
+
37
+ - name: Build with Jekyll
38
+ # Outputs to the './_site' directory by default
39
+ run: |
40
+ bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" --source=docs --destination=docs/_site
41
+ env:
42
+ JEKYLL_ENV: production
43
+
44
+ - name: Upload artifact
45
+ # Automatically uploads an artifact from the './_site' directory by default
46
+ uses: actions/upload-pages-artifact@v3
47
+
48
+ with:
49
+ path: docs/_site
50
+
51
+ if: ${{ github.ref == 'refs/heads/main' }}
52
+
53
+ deploy:
54
+ environment:
55
+ name: github-pages
56
+ url: ${{ steps.deployment.outputs.page_url }}
57
+
58
+ runs-on: ubuntu-latest
59
+
60
+ needs: build
61
+
62
+ if: ${{ github.ref == 'refs/heads/main' }}
63
+
64
+ steps:
65
+ - name: Deploy to GitHub Pages
66
+ id: deployment
67
+ uses: actions/deploy-pages@v4
@@ -0,0 +1,7 @@
1
+
2
+ ---
3
+
4
+ Back to
5
+ {% for breadcrumb in page.breadcrumbs -%}
6
+ [{{ breadcrumb.name }}]({{breadcrumb.path}}){% unless forloop.last %} | {% endunless %}
7
+ {% endfor %}
@@ -0,0 +1,23 @@
1
+ {% assign method = site.methods | where: "data_path", include.attribute.path | where: "version", page.version | first %}
2
+ {% capture prefix %}{{ include.type }}-attribute{% endcapture %}
3
+ {% capture heading_id %}{{ prefix }}-{{ method.slug | replace: "=", "--equals" }}{% endcapture %}
4
+
5
+ {% include reference/attributes/heading.md attribute=include.attribute heading_id=heading_id method=method type=include.type %}
6
+
7
+ {% include reference/methods/aliases.md method=method %}
8
+
9
+ {% include reference/methods/inherited.md inherited=include.inherited method=method %}
10
+
11
+ {% include reference/methods/overview.md method=method heading_id=heading_id prefix=prefix %}
12
+
13
+ {% include reference/methods/overloads.md heading_id=heading_id method=method %}
14
+
15
+ {% include reference/methods/parameters.md heading_id=heading_id method=method %}
16
+
17
+ {% include reference/methods/yields.md heading_id=heading_id method=method %}
18
+
19
+ {% include reference/methods/returns.md heading_id=heading_id method=method %}
20
+
21
+ {% include reference/methods/raises.md heading_id=heading_id method=method %}
22
+
23
+ {% include reference/methods/post_overview.md heading_id=heading_id method=method %}
@@ -0,0 +1,15 @@
1
+ {% capture char %}{% if include.type == "class" %}.{% else %}#{% endif %}{% endcapture %}
2
+ {% capture access %}{% if include.attribute.read and include.attribute.write %}{% elsif include.attribute.read %} <small>(readonly)</small>{% else %} <small>(writeonly)</small>{% endif %}{% endcapture %}
3
+ {% capture abstract %}{% if include.method.metadata.abstract %} <small>(abstract)</small>{% endif %}{% endcapture %}
4
+ {% capture deprecated %}{% if include.method.metadata.deprecated %} <small>(deprecated)</small>{% endif %}{% endcapture %}
5
+
6
+ <h3>
7
+ {% if include.method.overloads.size > 0 %}
8
+ {% for overload in include.method.overloads %}
9
+ <code>{{ char }}{{ overload.signature }} => {% include reference/methods/return_types.md method=overload %}{{ access }}</code>{% unless forloop.last %}<br />{% endunless %}
10
+ {% endfor %}
11
+ {%- else -%}
12
+ <code>{{ char }}{{ include.method.signature }} => {% include reference/methods/return_types.md method=include.method %}{{ access }}{{ abstract }}{{ deprecated }}</code>
13
+ {% endif %}
14
+ </h3>
15
+ {: #{{ include.heading_id }} }
@@ -0,0 +1,27 @@
1
+ {% assign definition = site.classes | where: "data_path", page.data_path | where: "version", page.version | first %}
2
+
3
+ # Class: {{ 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/subclasses.md definition=definition %}
12
+
13
+ {% include reference/definitions/definitions.md definition=definition %}
14
+
15
+ {% include reference/definitions/constants.md definition=definition %}
16
+
17
+ {% include reference/definitions/class_attributes.md definition=definition %}
18
+
19
+ {% include reference/definitions/class_methods.md definition=definition %}
20
+
21
+ {% include reference/definitions/constructor.md definition=definition %}
22
+
23
+ {% include reference/definitions/instance_attributes.md definition=definition %}
24
+
25
+ {% include reference/definitions/instance_methods.md definition=definition constructor=definition.constructor %}
26
+
27
+ {% include reference/definitions/breadcrumbs.md definition=definition %}
@@ -0,0 +1,8 @@
1
+ {% assign const = site.constants | where: "data_path", include.constant.path | where: "version", page.version | first %}
2
+ {% capture heading_id %}constant-{{ const.slug }}{% endcapture %}
3
+
4
+ {% include reference/constants/heading.md constant=const heading_id=heading_id %}
5
+
6
+ {% include reference/constants/inherited.md constant=const inherited=include.inherited %}
7
+
8
+ {% include reference/constants/overview.md constant=const heading_id=heading_id %}
@@ -0,0 +1,6 @@
1
+ <h3>
2
+ <code>{{ constant.name }}</code>
3
+ </h3>
4
+ {: #{{ heading_id }} }
5
+
6
+ <span class="constant-value" style="margin-left: 1rem;">= <code>{{ include.constant.value }}</code></span>
@@ -0,0 +1,4 @@
1
+ {% if include.inherited %}
2
+ Inherited From
3
+ : {% include reference/parent_link.md parent_path=include.constant.parent_path %}
4
+ {% endif %}
@@ -0,0 +1,60 @@
1
+ {% if include.constant.metadata.todos.size > 0 %}
2
+ {% for todo in include.constant.metadata.todos %}
3
+ > **Todo:** {{ todo }}
4
+ {% endfor %}
5
+ {% endif %}
6
+
7
+ {% if include.constant.metadata.notes.size > 0 %}
8
+ {% for note in include.constant.metadata.notes %}
9
+ > *Note:* {{ note }}
10
+ {% endfor %}
11
+ {% endif %}
12
+
13
+ {% if include.constant.short_description %}
14
+ {{ include.constant.short_description }}
15
+ {% endif %}
16
+
17
+ {% if include.constant.description %}
18
+ {{ include.constant.description }}
19
+ {% endif %}
20
+
21
+ {% if include.constant.metadata.examples.size > 0 %}
22
+ #### Examples
23
+ {: #{{ include.heading_id }}--examples }
24
+ {% for example in include.constant.metadata.examples %}
25
+ {% if example.name.size > 0 %}**{{ example.name }}**{% endif %}
26
+ {% highlight ruby %}{{ example.text }}{% endhighlight %}
27
+ {% endfor %}
28
+ {% endif %}
29
+
30
+ {% if include.constant.metadata.see.size > 0 %}
31
+ #### See Also
32
+ {: #{{ include.heading_id }}--see-also }
33
+ {% for see in include.constant.metadata.see %}
34
+ - {% include reference/see_link.md see=see -%}
35
+ {% endfor %}
36
+ {% endif %}
37
+
38
+ {% if include.constant.metadata.authors.size > 0 %}
39
+ #### Author{% if include.constant.metadata.authors.size > 1 %}s{% endif %}
40
+ {: #{{ include.heading_id }}--authors }
41
+ {% for author in include.constant.metadata.authors %}
42
+ - {{ author -}}
43
+ {% endfor %}
44
+ {% endif %}
45
+
46
+ {% if include.constant.metadata.since.size > 0 %}
47
+ #### Since
48
+ {: #{{ include.heading_id }}--since }
49
+ {% for since in include.constant.metadata.since %}
50
+ - {{ since -}}
51
+ {% endfor %}
52
+ {% endif %}
53
+
54
+ {% if include.constant.metadata.versions.size > 0 %}
55
+ #### Version{% if include.constant.metadata.versions.size > 1 %}s{% endif %}
56
+ {: #{{ include.heading_id }}--versions }
57
+ {% for version in include.constant.metadata.versions %}
58
+ - {{ version -}}
59
+ {% endfor %}
60
+ {% endif %}
@@ -0,0 +1,21 @@
1
+ {% capture breadcrumbs %}
2
+ {% if include.definition.parent_path.size > 0 %}
3
+ {% assign parent_definition = site.classes | where: "data_path", include.definition.parent_path | where: "version", page.version | first %}
4
+ {%- unless parent_definition %}{% assign parent_definition = site.modules | where: "data_path", include.definition.parent_path | where: "version", page.version | first %}{% endunless %}
5
+ {%- include reference/definitions/breadcrumbs.md definition=parent_definition %} | {% include reference/parent_link.md parent_path=include.definition.parent_path -%}
6
+ {%- else %}
7
+
8
+ ---
9
+
10
+ Back to
11
+ [Documentation]({{site.baseurl}}/) |
12
+ {%- if page.version == "*" %}
13
+ [Reference]({{site.baseurl}}/reference)
14
+ {%- else %}
15
+ [Versions]({{site.baseurl}}/versions) |
16
+ [{{ page.version }}]({{site.baseurl}}/versions/{{page.version}}) |
17
+ [Reference]({{site.baseurl}}/versions/{{page.version}}/reference)
18
+ {% endif %}
19
+ {%- endif %}
20
+ {% endcapture %}
21
+ {{ breadcrumbs | strip }}
@@ -0,0 +1,9 @@
1
+ {% if include.definition.class_attributes.size > 0 %}
2
+ ## Class Attributes
3
+
4
+ {% for class_attribute in include.definition.class_attributes %}
5
+ {% include reference/attribute.md attribute=class_attribute type="class" inherited=class_attribute.inherited %}
6
+ {% endfor %}
7
+
8
+ [Back To Top](#)
9
+ {% endif %}
@@ -0,0 +1,9 @@
1
+ {% if include.definition.class_methods.size > 0 %}
2
+ ## Class Methods
3
+
4
+ {% for class_method in include.definition.class_methods %}
5
+ {% include reference/method.md name=class_method.name path=class_method.path type="class" inherited=class_method.inherited %}
6
+ {% endfor %}
7
+
8
+ [Back To Top](#)
9
+ {% endif %}
@@ -0,0 +1,9 @@
1
+ {% if include.definition.constants.size > 0 %}
2
+ ## Constants
3
+
4
+ {% for constant in include.definition.constants %}
5
+ {% include reference/constant.md constant=constant inherited=constant.inherited %}
6
+ {% endfor %}
7
+
8
+ [Back To Top](#)
9
+ {% endif %}
@@ -0,0 +1,12 @@
1
+ {% if include.definition.constructor %}
2
+ {% for instance_method in include.definition.instance_methods %}
3
+ {% if instance_method.constructor %}
4
+ {% assign path=instance_method.path %}
5
+ {% assign inherited=instance_method.inherited %}
6
+ {% endif %}
7
+ {% endfor %}
8
+ ## Constructor
9
+ {% include reference/method.md name="initialize" inherited=inherited path=path type="instance" %}
10
+
11
+ [Back To Top](#)
12
+ {% endif %}
@@ -0,0 +1,23 @@
1
+ {% if include.definition.defined_classes.size > 0 or include.definition.defined_modules.size > 0 %}
2
+ ## Defined Under Namespace
3
+
4
+ {% if include.definition.defined_classes.size > 0 %}
5
+ Classes
6
+ : {% for defined_class in include.definition.defined_classes -%}
7
+ {% capture path %}{{ include.definition.data_path }}/{{ defined_class.slug }}{% endcapture %}
8
+ {% include reference/reference_link.md label=defined_class.name path=path -%}
9
+ {% unless forloop.last %}, {% endunless %}
10
+ {%- endfor %}
11
+ {% endif %}
12
+
13
+ {% if include.definition.defined_modules.size > 0 %}
14
+ Modules
15
+ : {% for defined_module in include.definition.defined_modules -%}
16
+ {% capture path %}{{ include.definition.data_path }}/{{ defined_module.slug }}{% endcapture %}
17
+ {% include reference/reference_link.md label=defined_module.name path=path -%}
18
+ {% unless forloop.last %}, {% endunless %}
19
+ {%- endfor %}
20
+ {% endif %}
21
+
22
+ [Back To Top](#)
23
+ {% endif %}
@@ -0,0 +1,34 @@
1
+ {% if include.definition.parent_path.size > 0 %}
2
+ Parent Namespace
3
+ : {% include reference/parent_link.md parent_path=include.definition.parent_path -%}
4
+ {% endif %}
5
+
6
+ {% if include.definition.inherited_classes.size > 0 %}
7
+ Inherited Classes
8
+ : {% for inherited_class in include.definition.inherited_classes -%}
9
+ {% include reference/reference_link.md label=inherited_class.name path=inherited_class.path %}
10
+ &gt;
11
+ {% endfor -%}
12
+ Object
13
+ {% endif %}
14
+
15
+ {% if include.definition.extended_modules.size > 0 %}
16
+ Extended Modules
17
+ : {% for extended_module in include.definition.extended_modules -%}
18
+ {% include reference/reference_link.md label=extended_module.name path=extended_module.path -%}
19
+ {% unless forloop.last %}, {% endunless %}
20
+ {%- endfor %}
21
+ {% endif %}
22
+
23
+ {% if include.definition.included_modules.size > 0 %}
24
+ Included Modules
25
+ : {% for included_module in include.definition.included_modules -%}
26
+ {% include reference/reference_link.md label=included_module.name path=included_module.path -%}
27
+ {% unless forloop.last %}, {% endunless %}
28
+ {%- endfor %}
29
+ {% endif %}
30
+
31
+ {% if include.definition.files.size > 0 %}
32
+ Defined In
33
+ : {{ include.definition.files | first }}
34
+ {% endif %}
@@ -0,0 +1,9 @@
1
+ {% if include.definition.instance_attributes.size > 0 %}
2
+ ## Instance Attributes
3
+
4
+ {% for instance_attribute in include.definition.instance_attributes %}
5
+ {% include reference/attribute.md attribute=instance_attribute write=instance_attribute.write type="instance" inherited=instance_attribute.inherited %}
6
+ {% endfor %}
7
+
8
+ [Back To Top](#)
9
+ {% endif %}