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
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4efbec5418a43dab48ee3f399e9461fd64f17f1b31931d384f6bd5b3de0407cb
4
+ data.tar.gz: a609dd607d8b1c9a71495e09c0f01e70bac9d92ad91a29817f5abbfb1baefeb8
5
+ SHA512:
6
+ metadata.gz: b2c4d06f1f2ff5cf128cee30e748a5255d99699f80a3e69054f54d544d1389aa045752b38be64b0c002e6b71e3fb654e77856293eb66d2297565e65315b2aba3
7
+ data.tar.gz: d01dd772621dbaac3c8261089ea997ad471edabd9f7b2a65d01467cd062415dae4a15a1b04f4198baa7c6bd117dd1852d2342bef2297c35befb75a03e9c7ca56
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ # 0.1.0
4
+
5
+ Initial development release.
@@ -0,0 +1,132 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at
63
+ merlin@sleepingkingstudios.com.
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series
86
+ of actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or
93
+ permanent ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within
113
+ the community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.0, available at
119
+ [https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0].
120
+
121
+ Community Impact Guidelines were inspired by
122
+ [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
123
+
124
+ For answers to common questions about this code of conduct, see the FAQ at
125
+ [https://www.contributor-covenant.org/faq][FAQ]. Translations are available
126
+ at [https://www.contributor-covenant.org/translations][translations].
127
+
128
+ [homepage]: https://www.contributor-covenant.org
129
+ [v2.0]: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html
130
+ [Mozilla CoC]: https://github.com/mozilla/diversity
131
+ [FAQ]: https://www.contributor-covenant.org/faq
132
+ [translations]: https://www.contributor-covenant.org/translations
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2022 Rob Smith
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,101 @@
1
+ # SleepingKingStudios::Docs
2
+
3
+ Tools for generating a versioned documentation site from YARD docs.
4
+
5
+ <blockquote>
6
+ Read The
7
+ <a href="https://www.sleepingkingstudios.com/sleeping_king_studios-docs" target="_blank">
8
+ Documentation
9
+ </a>
10
+ </blockquote>
11
+
12
+ ## About
13
+
14
+ ### Compatibility
15
+
16
+ SleepingKingStudios::Yard is tested against Ruby (MRI) 3.1 through 3.4.
17
+
18
+ ### Documentation
19
+
20
+ Documentation is generated using [YARD](https://yardoc.org/), and can be generated locally using the `yard` gem. Online documentation for current and previous versions is available at [sleepingkingstudios.com](https://www.sleepingkingstudios.com/sleeping_king_studios-docs).
21
+
22
+ ### License
23
+
24
+ Copyright (c) 2022-2025 Rob Smith
25
+
26
+ SleepingKingStudios::Docs is released under the [MIT License](https://opensource.org/licenses/MIT).
27
+
28
+ ### Contribute
29
+
30
+ The canonical repository for this gem is located at https://github.com/sleepingkingstudios/sleeping_king_studios-docs.
31
+
32
+ To report a bug or submit a feature request, please use the [Issue Tracker](https://github.com/sleepingkingstudios/sleeping_king_studios-docs/issues).
33
+
34
+ To contribute code, please fork the repository, make the desired updates, and then provide a [Pull Request](https://github.com/sleepingkingstudios/sleeping_king_studios-docs/pulls). Pull requests must include appropriate tests for consideration, and all code must be properly formatted.
35
+
36
+ ### Code of Conduct
37
+
38
+ Please note that the `SleepingKingStudios::Docs` project is released with a [Contributor Code of Conduct](https://github.com/sleepingkingstudios/sleeping_king_studios-docs/blob/master/CODE_OF_CONDUCT.md). By contributing to this project, you agree to abide by its terms.
39
+
40
+ ## Installation
41
+
42
+ Add the docs dependencies to your Gemfile:
43
+
44
+ ```ruby
45
+ group :docs do
46
+ gem 'jekyll'
47
+ gem 'sleeping_king_studios-docs'
48
+ gem 'webrick'
49
+ gem 'yard', require: false
50
+ end
51
+ ```
52
+
53
+ You may also want to consider adding a [Jekyll theme](https://jekyllrb.com/docs/themes/#pick-up-a-theme) and/or a Markdown parser (Kramdown is recommended).
54
+
55
+ Generate or update your `tasks.thor` file:
56
+
57
+ ```ruby
58
+ # frozen_string_literal: true
59
+
60
+ load 'sleeping_king_studios/docs/tasks.rb'
61
+ ```
62
+
63
+ ### Installation Script
64
+
65
+ Use the installation script to quickly install the Jekyll application:
66
+
67
+ ```bash
68
+ bundle exec thor docs:install --name="Orichalcum" --description="A real gem." --repository="www.example.com"
69
+ ```
70
+
71
+ You can also install a GitHub pages workflow to automatically deploy to GitHub Pages. Make sure that Pages is configured for your repository to deploy from a GitHub action.
72
+
73
+ ```bash
74
+ bundle exec thor docs:install:workflow
75
+ ```
76
+
77
+ ## Generating Documentation
78
+
79
+ Use the [Thor CLI](https://www.sleepingkingstudios.com/sleeping_king_studios-docs/tasks#documentation) to generate and update the reference documentation for your project.
80
+
81
+ The `docs:generate` task will generate the documentation files for each Ruby file in your project. It does not update any existing files by default, so if you have made changes to existing code use the `docs:update` command or use the `--force` command line option.
82
+
83
+ ```bash
84
+ bundle exec thor docs:generate
85
+ ```
86
+
87
+ The `docs:update` task will generate and updates th documentation files for each Ruby file in your project. It will update any existing documentation files.
88
+
89
+ ```bash
90
+ bundle exec thor docs:update
91
+ ```
92
+
93
+ ### Versioned Documentation
94
+
95
+ You can pass a `--version` flag to the `docs:generate` or `docs:update` tasks, indicating that the generated documentation is for a specific version of the software. This is recommended for each major and minor release; patch-level changes may or may not need to be documented depending on the degree of change.
96
+
97
+ ```bash
98
+ bundle exec thor docs:generate --version="1.2.3"
99
+ ```
100
+
101
+ Any non-reference documentation should be copied into the newly created version scope. Make sure to update the `versions/index.md` file to link the new scope.
@@ -0,0 +1,268 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'cuprum/command'
4
+ require 'sleeping_king_studios/tools/toolbelt'
5
+
6
+ require 'sleeping_king_studios/docs/commands'
7
+
8
+ module SleepingKingStudios::Docs::Commands
9
+ # Generates YARD documentation files.
10
+ class Generate < SleepingKingStudios::Docs::Commands::Generators::Base # rubocop:disable Metrics/ClassLength
11
+ # @overload initialize(docs_path:, **options)
12
+ # @param docs_path [String] the directory path for generating the
13
+ # documentation files.
14
+ # @param options [Hash] the configured options for the generator.
15
+ #
16
+ # @option options dry_run [Boolean] if true, does not make any changes to
17
+ # the filesystem.
18
+ # @option options force [Boolean] if true, overwrites any existing files.
19
+ # @option options version [String] the code version for the generated
20
+ # documentation.
21
+ # @option options verbose [Boolean] if true, prints status messages to
22
+ # STDOUT.
23
+ def initialize(
24
+ docs_path:,
25
+ error_stream: $stderr,
26
+ output_stream: $stdout,
27
+ **options
28
+ )
29
+ super(docs_path:, **options)
30
+
31
+ @error_stream = error_stream
32
+ @output_stream = output_stream
33
+ end
34
+
35
+ private
36
+
37
+ attr_reader :failures
38
+
39
+ def build_constant(native:)
40
+ SleepingKingStudios::Docs::Data::ConstantObject.new(native:)
41
+ end
42
+
43
+ def build_class(native:)
44
+ SleepingKingStudios::Docs::Data::ClassObject.new(native:)
45
+ end
46
+
47
+ def build_method(native:)
48
+ SleepingKingStudios::Docs::Data::MethodObject.new(native:)
49
+ end
50
+
51
+ def build_module(native:)
52
+ SleepingKingStudios::Docs::Data::ModuleObject.new(native:)
53
+ end
54
+
55
+ def build_root_namespace(native:)
56
+ SleepingKingStudios::Docs::Data::RootObject.new(native:)
57
+ end
58
+
59
+ def data_command
60
+ @data_command ||=
61
+ SleepingKingStudios::Docs::Commands::Generators::DataGenerator
62
+ .new(docs_path:, **options)
63
+ end
64
+
65
+ def generate_classes
66
+ puts "\nGenerating Classes:" if verbose? && !registry_classes.empty?
67
+
68
+ registry_classes.each do |native|
69
+ data_object = build_class(native:)
70
+
71
+ puts "- #{data_object.name}" if verbose?
72
+
73
+ generate_data_file(data_object:)
74
+ generate_reference_file(data_object:)
75
+ end
76
+ end
77
+
78
+ def generate_constants
79
+ puts "\nGenerating Constants:" if verbose? && !registry_constants.empty?
80
+
81
+ registry_constants.each do |native|
82
+ data_object = build_constant(native:)
83
+
84
+ puts "- #{data_object.name}" if verbose?
85
+
86
+ generate_data_file(data_object:)
87
+ end
88
+ end
89
+
90
+ def generate_data_file(data_object:, **options)
91
+ report_result(
92
+ command: data_command,
93
+ data_object:,
94
+ result: data_command.call(data_object:, **options),
95
+ **options
96
+ )
97
+ end
98
+
99
+ def generate_methods
100
+ puts "\nGenerating Methods:" if verbose? && !registry_methods.empty?
101
+
102
+ registry_methods.each do |native|
103
+ data_object = build_method(native:)
104
+
105
+ puts "- #{data_object.name}" if verbose?
106
+
107
+ generate_data_file(data_object:)
108
+ end
109
+ end
110
+
111
+ def generate_modules
112
+ puts "\nGenerating Modules:" if verbose? && !registry_modules.empty?
113
+
114
+ registry_modules.each do |native|
115
+ data_object = build_module(native:)
116
+
117
+ puts "- #{data_object.name}" if verbose?
118
+
119
+ generate_data_file(data_object:)
120
+ generate_reference_file(data_object:)
121
+ end
122
+ end
123
+
124
+ def generate_reference_file(data_object:, **options)
125
+ report_result(
126
+ command: reference_command,
127
+ data_object:,
128
+ result: reference_command.call(
129
+ data_object:,
130
+ **options
131
+ ),
132
+ **options
133
+ )
134
+ end
135
+
136
+ def generate_root_namespace
137
+ puts 'Generating Root Namespace:' if verbose?
138
+
139
+ data_object = build_root_namespace(native: registry_root)
140
+
141
+ puts '- root namespace' if verbose?
142
+
143
+ generate_data_file(data_object:, data_type: :namespace)
144
+ end
145
+
146
+ def parse_registry(file_path:)
147
+ SleepingKingStudios::Docs::Commands::Parse.new.call(file_path)
148
+ end
149
+
150
+ def process(file_path: nil)
151
+ step { parse_registry(file_path:) }
152
+
153
+ @failures = []
154
+
155
+ generate_root_namespace
156
+ generate_classes
157
+ generate_constants
158
+ generate_methods
159
+ generate_modules
160
+
161
+ report_all_failures
162
+
163
+ nil
164
+ end
165
+
166
+ def puts(string)
167
+ output_stream.puts(string)
168
+ end
169
+
170
+ def reference_command
171
+ @reference_command ||=
172
+ SleepingKingStudios::Docs::Commands::Generators::ReferenceGenerator
173
+ .new(docs_path:, **options)
174
+ end
175
+
176
+ def registry
177
+ SleepingKingStudios::Docs::Registry.instance
178
+ end
179
+
180
+ def registry_classes
181
+ registry
182
+ .select { |obj| obj.type == :class }
183
+ .reject { |obj| obj.tags.any? { |tag| tag.tag_name == 'private' } }
184
+ .sort_by(&:path)
185
+ end
186
+
187
+ def registry_constants
188
+ registry
189
+ .select { |obj| obj.type == :constant && obj.visibility == :public }
190
+ .reject { |obj| obj.tags.any? { |tag| tag.tag_name == 'private' } }
191
+ .sort_by(&:path)
192
+ end
193
+
194
+ def registry_methods
195
+ registry
196
+ .select { |obj| obj.type == :method && obj.visibility == :public }
197
+ .reject { |obj| obj.tags.any? { |tag| tag.tag_name == 'private' } }
198
+ .reject(&:is_alias?)
199
+ .sort_by(&:path)
200
+ end
201
+
202
+ def registry_modules
203
+ registry
204
+ .select { |obj| obj.type == :module }
205
+ .reject { |obj| obj.tags.any? { |tag| tag.tag_name == 'private' } }
206
+ .sort_by(&:path)
207
+ end
208
+
209
+ def registry_root
210
+ registry
211
+ .find { |obj| obj.type == :root }
212
+ end
213
+
214
+ def report_all_failures
215
+ return if failures.empty?
216
+ return unless verbose?
217
+
218
+ warn "\nFailures:"
219
+
220
+ failures.each do |failure|
221
+ report_failure(**failure, nested: true)
222
+ end
223
+ end
224
+
225
+ def report_failure(file_path:, result:, nested: false)
226
+ message = nested ? ' - ' : ''
227
+ message +=
228
+ "FAILURE: unable to write file to #{file_path} - " \
229
+ "#{result.error.class}: #{result.error.message}"
230
+
231
+ warn message
232
+ end
233
+
234
+ def report_result(command:, data_object:, result:, data_type: nil) # rubocop:disable Metrics/MethodLength
235
+ data_type ||= data_object_type(data_object:)
236
+ file_path = command.file_path(
237
+ data_object:,
238
+ data_type:
239
+ )
240
+
241
+ if result.success?
242
+ report_success(file_path:)
243
+ else
244
+ failures << { file_path:, result: }
245
+
246
+ report_failure(file_path:, result:, nested: verbose?)
247
+ end
248
+
249
+ result
250
+ end
251
+
252
+ def report_success(file_path:)
253
+ return unless verbose?
254
+
255
+ message = " - SUCCESS: file written to #{file_path}"
256
+
257
+ puts message
258
+ end
259
+
260
+ def tools
261
+ SleepingKingStudios::Tools::Toolbelt.instance
262
+ end
263
+
264
+ def warn(string)
265
+ error_stream.puts(string)
266
+ end
267
+ end
268
+ end
@@ -0,0 +1,97 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'cuprum/command'
4
+ require 'cuprum/exception_handling'
5
+ require 'sleeping_king_studios/tools/toolbelt'
6
+
7
+ require 'sleeping_king_studios/docs/commands/generators'
8
+
9
+ module SleepingKingStudios::Docs::Commands::Generators
10
+ # Abstract base class for writing generator classes.
11
+ class Base < Cuprum::Command
12
+ include Cuprum::ExceptionHandling
13
+
14
+ # @param docs_path [String] the directory path for generating the
15
+ # documentation files.
16
+ # @param options [Hash] the configured options for the generator.
17
+ #
18
+ # @option options dry_run [Boolean] if true, does not make any changes to
19
+ # the filesystem.
20
+ # @option options force [Boolean] if true, overwrites any existing files.
21
+ # @option options version [String] the code version for the generated
22
+ # documentation.
23
+ # @option options verbose [Boolean] if true, prints status messages to
24
+ # STDOUT.
25
+ def initialize(docs_path:, **options)
26
+ super()
27
+
28
+ @docs_path = docs_path
29
+ @options = default_options.merge(options)
30
+ end
31
+
32
+ # @return [String] the directory path for generating the documentation
33
+ # files.
34
+ attr_reader :docs_path
35
+
36
+ # @return [Hash] the configured options for the generator.
37
+ attr_reader :options
38
+
39
+ # @return [Boolean] if true, does not make any changes to the filesystem.
40
+ def dry_run?
41
+ @options[:dry_run]
42
+ end
43
+
44
+ # @return [Boolean] if true, overwrites any existing files.
45
+ def force?
46
+ @options[:force]
47
+ end
48
+
49
+ # @return [String] the relative path to the Jekyll templates for each data
50
+ # type.
51
+ def template_path
52
+ @options.fetch(:template_path, 'reference')
53
+ end
54
+
55
+ # @return [Boolean] if true, prints status messages to STDOUT.
56
+ def verbose?
57
+ @options[:verbose]
58
+ end
59
+
60
+ # @return [String] the code version for the generated documentation.
61
+ def version
62
+ @options[:version]
63
+ end
64
+
65
+ private
66
+
67
+ attr_reader :error_stream
68
+
69
+ attr_reader :output_stream
70
+
71
+ def data_object_type(data_object:)
72
+ data_object
73
+ .class
74
+ .name
75
+ .split('::')
76
+ .last
77
+ .then { |str| str[0...-6] }
78
+ .then { |str| tools.string_tools.underscore(str) }
79
+ end
80
+
81
+ def default_options
82
+ {
83
+ dry_run: false,
84
+ force: false,
85
+ verbose: false
86
+ }
87
+ end
88
+
89
+ def tools
90
+ SleepingKingStudios::Tools::Toolbelt.instance
91
+ end
92
+
93
+ def version_string
94
+ version || '*'
95
+ end
96
+ end
97
+ end
@@ -0,0 +1,68 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'yaml'
4
+
5
+ require 'sleeping_king_studios/tools/toolbelt'
6
+
7
+ require 'sleeping_king_studios/docs/commands/generators'
8
+
9
+ module SleepingKingStudios::Docs::Commands::Generators
10
+ # Generator for writing data files.
11
+ class DataGenerator < SleepingKingStudios::Docs::Commands::Generators::Base
12
+ # Determines the generated file path for the given data object.
13
+ #
14
+ # @param data_object [SleepingKingStudios::Docs::Data::Base] the data object
15
+ # for which the file is generated.
16
+ # @param data_type [String, Symbol] the type of data file to generate.
17
+ #
18
+ # @return [String] the qualified path to the generated file.
19
+ def file_path(data_object:, data_type: nil)
20
+ data_type ||= data_object_type(data_object:)
21
+
22
+ File.join(dir_path(data_type), "#{data_object.data_path}.yml")
23
+ end
24
+
25
+ private
26
+
27
+ def dir_path(data_type)
28
+ scope = "_#{tools.string_tools.pluralize(data_type.to_s)}"
29
+
30
+ if version
31
+ File.join(docs_path, scope, "version--#{version}")
32
+ else
33
+ File.join(docs_path, scope)
34
+ end
35
+ end
36
+
37
+ def file_data(data_object:)
38
+ data_object
39
+ .as_json
40
+ .merge('version' => version_string)
41
+ end
42
+
43
+ def process(data_object:, data_type: nil)
44
+ data = file_data(data_object:)
45
+ data_type ||= data_object_type(data_object:)
46
+
47
+ return success(nil) if dry_run?
48
+
49
+ write_command.call(
50
+ contents: YAML.dump(data),
51
+ file_path: file_path(
52
+ data_object:,
53
+ data_type:
54
+ )
55
+ )
56
+ end
57
+
58
+ def tools
59
+ SleepingKingStudios::Tools::Toolbelt.instance
60
+ end
61
+
62
+ def write_command
63
+ @write_command ||=
64
+ SleepingKingStudios::Docs::Commands::WriteFile
65
+ .new(force: force?)
66
+ end
67
+ end
68
+ end