way_of_working-for-hdi 1.0.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 (57) hide show
  1. checksums.yaml +7 -0
  2. data/.alexignore +2 -0
  3. data/.alexrc +3 -0
  4. data/.mega-linter.yml +145 -0
  5. data/.rubocop +1 -0
  6. data/CHANGELOG.md +27 -0
  7. data/CODE_OF_CONDUCT.md +133 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +77 -0
  10. data/Rakefile +16 -0
  11. data/code_safety.yml +314 -0
  12. data/docs/.gitignore +5 -0
  13. data/docs/404.md +11 -0
  14. data/docs/Gemfile +38 -0
  15. data/docs/Gemfile.lock +293 -0
  16. data/docs/_config.yml +90 -0
  17. data/docs/_includes/components/sidebar.html +69 -0
  18. data/docs/_includes/footer_custom.html +3 -0
  19. data/docs/_sass/color_schemes/hdi-light.scss +31 -0
  20. data/docs/_sass/custom/OneDarkJekyll.scss +203 -0
  21. data/docs/_sass/custom/a11y-colours.scss +4 -0
  22. data/docs/_sass/custom/color-scheme-shims.scss +66 -0
  23. data/docs/_sass/custom/custom.scss +60 -0
  24. data/docs/_sass/custom/setup.scss +3 -0
  25. data/docs/decisions/0000-use-markdown-any-decision-records.md +30 -0
  26. data/docs/decisions/0001-adoption-of-an-off-the-shelf-code-of-conduct.md +34 -0
  27. data/docs/decisions/0002-use-megalinter-for-linting-common-file-formats.md +41 -0
  28. data/docs/decisions/0003-use-keep-a-changelog-v1-1-as-the-format-for-changelogs.md +40 -0
  29. data/docs/decisions/0004-end-to-end-aka-system-testing.md +41 -0
  30. data/docs/decisions/0005-standardised-approach-to-versioning.md +27 -0
  31. data/docs/decisions/0006-standard-approach-to-automated-accessibility-testing.md +54 -0
  32. data/docs/decisions/0007-test-for-insensitive-and-inconsiderate-writing.md +32 -0
  33. data/docs/decisions/0008-software-as-a-service-saas-web-analytics-solution.md +30 -0
  34. data/docs/decisions/0009-pull-request-guidlines-and-template.md +31 -0
  35. data/docs/decisions/README.md +7 -0
  36. data/docs/decisions/adr-template.md +82 -0
  37. data/docs/decisions/index.md +48 -0
  38. data/docs/index.md +33 -0
  39. data/docs/pa11y.json +9 -0
  40. data/docs/way_of_working/accessibility-testing.md +29 -0
  41. data/docs/way_of_working/changelog.md +58 -0
  42. data/docs/way_of_working/code-linting/index.md +39 -0
  43. data/docs/way_of_working/code-linting/linters.md +153 -0
  44. data/docs/way_of_working/code-of-conduct.md +31 -0
  45. data/docs/way_of_working/decision-records.md +58 -0
  46. data/docs/way_of_working/end-to-end-testing.md +35 -0
  47. data/docs/way_of_working/inclusive-language.md +28 -0
  48. data/docs/way_of_working/pull-request-template-and-guidelines.md +18 -0
  49. data/docs/way_of_working/readme-badges.md +24 -0
  50. data/docs/way_of_working/versioning.md +25 -0
  51. data/lib/way_of_working/for/hdi/paths.rb +20 -0
  52. data/lib/way_of_working/for/hdi/plugin.rb +12 -0
  53. data/lib/way_of_working/for/hdi/version.rb +9 -0
  54. data/lib/way_of_working/for/hdi.rb +23 -0
  55. data/lib/way_of_working/rake_tasks/generators/init.rb +47 -0
  56. data/lib/way_of_working/rake_tasks.rb +22 -0
  57. metadata +257 -0
metadata ADDED
@@ -0,0 +1,257 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: way_of_working-for-hdi
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Tim Gentry
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2025-11-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: octokit
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '9.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '9.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: way_of_working
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 2.0.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 2.0.1
41
+ - !ruby/object:Gem::Dependency
42
+ name: way_of_working-audit-github
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.0.1
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.0.1
55
+ - !ruby/object:Gem::Dependency
56
+ name: way_of_working-audit-github-cis_benchmark
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: way_of_working-changelog-keepachangelog
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 1.0.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 1.0.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: way_of_working-code_linting-hdi
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 1.0.0
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 1.0.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: way_of_working-code_of_conduct-contributor_covenant
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 1.0.0
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 1.0.0
111
+ - !ruby/object:Gem::Dependency
112
+ name: way_of_working-decision_record-madr
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 1.0.0
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 1.0.0
125
+ - !ruby/object:Gem::Dependency
126
+ name: way_of_working-inclusive_language-alex
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: 1.0.1
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: 1.0.1
139
+ - !ruby/object:Gem::Dependency
140
+ name: way_of_working-pull_request_template-hdi
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: 1.0.0
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: 1.0.0
153
+ - !ruby/object:Gem::Dependency
154
+ name: zeitwerk
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: 2.6.18
160
+ type: :runtime
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: 2.6.18
167
+ description:
168
+ email:
169
+ - 52189+timgentry@users.noreply.github.com
170
+ executables: []
171
+ extensions: []
172
+ extra_rdoc_files: []
173
+ files:
174
+ - ".alexignore"
175
+ - ".alexrc"
176
+ - ".mega-linter.yml"
177
+ - ".rubocop"
178
+ - CHANGELOG.md
179
+ - CODE_OF_CONDUCT.md
180
+ - LICENSE.txt
181
+ - README.md
182
+ - Rakefile
183
+ - code_safety.yml
184
+ - docs/.gitignore
185
+ - docs/404.md
186
+ - docs/Gemfile
187
+ - docs/Gemfile.lock
188
+ - docs/_config.yml
189
+ - docs/_includes/components/sidebar.html
190
+ - docs/_includes/footer_custom.html
191
+ - docs/_sass/color_schemes/hdi-light.scss
192
+ - docs/_sass/custom/OneDarkJekyll.scss
193
+ - docs/_sass/custom/a11y-colours.scss
194
+ - docs/_sass/custom/color-scheme-shims.scss
195
+ - docs/_sass/custom/custom.scss
196
+ - docs/_sass/custom/setup.scss
197
+ - docs/decisions/0000-use-markdown-any-decision-records.md
198
+ - docs/decisions/0001-adoption-of-an-off-the-shelf-code-of-conduct.md
199
+ - docs/decisions/0002-use-megalinter-for-linting-common-file-formats.md
200
+ - docs/decisions/0003-use-keep-a-changelog-v1-1-as-the-format-for-changelogs.md
201
+ - docs/decisions/0004-end-to-end-aka-system-testing.md
202
+ - docs/decisions/0005-standardised-approach-to-versioning.md
203
+ - docs/decisions/0006-standard-approach-to-automated-accessibility-testing.md
204
+ - docs/decisions/0007-test-for-insensitive-and-inconsiderate-writing.md
205
+ - docs/decisions/0008-software-as-a-service-saas-web-analytics-solution.md
206
+ - docs/decisions/0009-pull-request-guidlines-and-template.md
207
+ - docs/decisions/README.md
208
+ - docs/decisions/adr-template.md
209
+ - docs/decisions/index.md
210
+ - docs/index.md
211
+ - docs/pa11y.json
212
+ - docs/way_of_working/accessibility-testing.md
213
+ - docs/way_of_working/changelog.md
214
+ - docs/way_of_working/code-linting/index.md
215
+ - docs/way_of_working/code-linting/linters.md
216
+ - docs/way_of_working/code-of-conduct.md
217
+ - docs/way_of_working/decision-records.md
218
+ - docs/way_of_working/end-to-end-testing.md
219
+ - docs/way_of_working/inclusive-language.md
220
+ - docs/way_of_working/pull-request-template-and-guidelines.md
221
+ - docs/way_of_working/readme-badges.md
222
+ - docs/way_of_working/versioning.md
223
+ - lib/way_of_working/for/hdi.rb
224
+ - lib/way_of_working/for/hdi/paths.rb
225
+ - lib/way_of_working/for/hdi/plugin.rb
226
+ - lib/way_of_working/for/hdi/version.rb
227
+ - lib/way_of_working/rake_tasks.rb
228
+ - lib/way_of_working/rake_tasks/generators/init.rb
229
+ homepage: https://github.com/HealthDataInsight/way_of_working-for-hdi
230
+ licenses:
231
+ - MIT
232
+ metadata:
233
+ allowed_push_host: https://rubygems.org
234
+ rubygems_mfa_required: 'true'
235
+ homepage_uri: https://github.com/HealthDataInsight/way_of_working-for-hdi
236
+ source_code_uri: https://github.com/HealthDataInsight/way_of_working-for-hdi
237
+ changelog_uri: https://github.com/HealthDataInsight/way_of_working-for-hdi/blob/main/CHANGELOG.md
238
+ post_install_message:
239
+ rdoc_options: []
240
+ require_paths:
241
+ - lib
242
+ required_ruby_version: !ruby/object:Gem::Requirement
243
+ requirements:
244
+ - - ">="
245
+ - !ruby/object:Gem::Version
246
+ version: 3.1.0
247
+ required_rubygems_version: !ruby/object:Gem::Requirement
248
+ requirements:
249
+ - - ">="
250
+ - !ruby/object:Gem::Version
251
+ version: '0'
252
+ requirements: []
253
+ rubygems_version: 3.5.16
254
+ signing_key:
255
+ specification_version: 4
256
+ summary: Way of Working for Health Data Insight
257
+ test_files: []