way_of_working 2.0.1 → 2.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -1
- data/CONTRIBUTING.md +62 -0
- data/README.md +186 -13
- data/lib/way_of_working/audit/github/auditor.rb +44 -0
- data/lib/way_of_working/audit/github/generators/exec.rb +163 -0
- data/lib/way_of_working/audit/github/rules/base.rb +91 -0
- data/lib/way_of_working/audit/github/rules/registry.rb +36 -0
- data/lib/way_of_working/audit/github/rules/unknown.rb +19 -0
- data/lib/way_of_working/audit/github.rb +25 -0
- data/lib/way_of_working/changelog/keepachangelog/generators/init.rb +118 -0
- data/lib/way_of_working/changelog/keepachangelog/github_audit_rule.rb +32 -0
- data/lib/way_of_working/changelog/keepachangelog/templates/docs/way_of_working/changelog.md +73 -0
- data/lib/way_of_working/changelog/keepachangelog.rb +35 -0
- data/lib/way_of_working/code_of_conduct/contributor_covenant/generators/init.rb +39 -0
- data/lib/way_of_working/code_of_conduct/contributor_covenant/github_audit_rule.rb +32 -0
- data/lib/way_of_working/code_of_conduct/contributor_covenant/templates/CODE_OF_CONDUCT.md.tt +133 -0
- data/lib/way_of_working/code_of_conduct/contributor_covenant/templates/docs/way_of_working/code-of-conduct.md +78 -0
- data/lib/way_of_working/code_of_conduct/contributor_covenant.rb +36 -0
- data/lib/way_of_working/decision_record/madr/generators/init.rb +41 -0
- data/lib/way_of_working/decision_record/madr/generators/new.rb +69 -0
- data/lib/way_of_working/decision_record/madr/github_audit_rule.rb +50 -0
- data/lib/way_of_working/decision_record/madr/templates/.github/ISSUE_TEMPLATE/decision-record.md +26 -0
- data/lib/way_of_working/decision_record/madr/templates/docs/decisions/0000-use-markdown-any-decision-records.md +30 -0
- data/lib/way_of_working/decision_record/madr/templates/docs/decisions/README.md +7 -0
- data/lib/way_of_working/decision_record/madr/templates/docs/decisions/adr-template.md.tt +82 -0
- data/lib/way_of_working/decision_record/madr/templates/docs/decisions/index.md +48 -0
- data/lib/way_of_working/decision_record/madr/templates/docs/way_of_working/decision-records.md +195 -0
- data/lib/way_of_working/decision_record/madr.rb +53 -0
- data/lib/way_of_working/git/repo_reader.rb +2 -2
- data/lib/way_of_working/inclusive_language/alex/generators/exec.rb +51 -0
- data/lib/way_of_working/inclusive_language/alex/generators/init.rb +34 -0
- data/lib/way_of_working/inclusive_language/alex/github_audit_rule.rb +35 -0
- data/lib/way_of_working/inclusive_language/alex/templates/.alexignore +2 -0
- data/lib/way_of_working/inclusive_language/alex/templates/.alexrc +3 -0
- data/lib/way_of_working/inclusive_language/alex/templates/.github/workflows/inclusive-language.yml +16 -0
- data/lib/way_of_working/inclusive_language/alex/templates/docs/way_of_working/inclusive-language.md +28 -0
- data/lib/way_of_working/inclusive_language/alex.rb +48 -0
- data/lib/way_of_working/pull_request_template/hdi/generators/init.rb +26 -0
- data/lib/way_of_working/pull_request_template/hdi/github_audit_rule.rb +32 -0
- data/lib/way_of_working/pull_request_template/hdi/templates/.github/pull_request_template.md +51 -0
- data/lib/way_of_working/pull_request_template/hdi/templates/docs/way_of_working/pull-request-template-and-guidelines.md +50 -0
- data/lib/way_of_working/pull_request_template/hdi.rb +35 -0
- data/lib/way_of_working/readme_badge/paths.rb +5 -2
- data/lib/way_of_working/version.rb +1 -1
- data/lib/way_of_working/versioning/semver/generators/init.rb +20 -0
- data/lib/way_of_working/versioning/semver/github_audit_rule.rb +49 -0
- data/lib/way_of_working/versioning/semver/templates/docs/way_of_working/versioning.md +71 -0
- data/lib/way_of_working/versioning/semver.rb +35 -0
- data/lib/way_of_working.rb +15 -0
- data/way_of_working.gemspec +3 -0
- metadata +88 -3
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: way_of_working
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Gentry
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-06-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -24,6 +24,34 @@ dependencies:
|
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: faraday-multipart
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '1.0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '1.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: faraday-retry
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '2.2'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '2.2'
|
|
27
55
|
- !ruby/object:Gem::Dependency
|
|
28
56
|
name: git
|
|
29
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -52,6 +80,20 @@ dependencies:
|
|
|
52
80
|
- - ">="
|
|
53
81
|
- !ruby/object:Gem::Version
|
|
54
82
|
version: '0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: octokit
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '9.1'
|
|
90
|
+
type: :runtime
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '9.1'
|
|
55
97
|
- !ruby/object:Gem::Dependency
|
|
56
98
|
name: rainbow
|
|
57
99
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -104,16 +146,55 @@ extra_rdoc_files: []
|
|
|
104
146
|
files:
|
|
105
147
|
- CHANGELOG.md
|
|
106
148
|
- CODE_OF_CONDUCT.md
|
|
149
|
+
- CONTRIBUTING.md
|
|
107
150
|
- LICENSE.txt
|
|
108
151
|
- README.md
|
|
109
152
|
- exe/way_of_working
|
|
110
153
|
- lib/tasks/audit_gems.rake
|
|
111
154
|
- lib/way_of_working.rb
|
|
155
|
+
- lib/way_of_working/audit/github.rb
|
|
156
|
+
- lib/way_of_working/audit/github/auditor.rb
|
|
157
|
+
- lib/way_of_working/audit/github/generators/exec.rb
|
|
158
|
+
- lib/way_of_working/audit/github/rules/base.rb
|
|
159
|
+
- lib/way_of_working/audit/github/rules/registry.rb
|
|
160
|
+
- lib/way_of_working/audit/github/rules/unknown.rb
|
|
161
|
+
- lib/way_of_working/changelog/keepachangelog.rb
|
|
162
|
+
- lib/way_of_working/changelog/keepachangelog/generators/init.rb
|
|
163
|
+
- lib/way_of_working/changelog/keepachangelog/github_audit_rule.rb
|
|
164
|
+
- lib/way_of_working/changelog/keepachangelog/templates/docs/way_of_working/changelog.md
|
|
112
165
|
- lib/way_of_working/cli.rb
|
|
166
|
+
- lib/way_of_working/code_of_conduct/contributor_covenant.rb
|
|
167
|
+
- lib/way_of_working/code_of_conduct/contributor_covenant/generators/init.rb
|
|
168
|
+
- lib/way_of_working/code_of_conduct/contributor_covenant/github_audit_rule.rb
|
|
169
|
+
- lib/way_of_working/code_of_conduct/contributor_covenant/templates/CODE_OF_CONDUCT.md.tt
|
|
170
|
+
- lib/way_of_working/code_of_conduct/contributor_covenant/templates/docs/way_of_working/code-of-conduct.md
|
|
113
171
|
- lib/way_of_working/configuration.rb
|
|
172
|
+
- lib/way_of_working/decision_record/madr.rb
|
|
173
|
+
- lib/way_of_working/decision_record/madr/generators/init.rb
|
|
174
|
+
- lib/way_of_working/decision_record/madr/generators/new.rb
|
|
175
|
+
- lib/way_of_working/decision_record/madr/github_audit_rule.rb
|
|
176
|
+
- lib/way_of_working/decision_record/madr/templates/.github/ISSUE_TEMPLATE/decision-record.md
|
|
177
|
+
- lib/way_of_working/decision_record/madr/templates/docs/decisions/0000-use-markdown-any-decision-records.md
|
|
178
|
+
- lib/way_of_working/decision_record/madr/templates/docs/decisions/README.md
|
|
179
|
+
- lib/way_of_working/decision_record/madr/templates/docs/decisions/adr-template.md.tt
|
|
180
|
+
- lib/way_of_working/decision_record/madr/templates/docs/decisions/index.md
|
|
181
|
+
- lib/way_of_working/decision_record/madr/templates/docs/way_of_working/decision-records.md
|
|
114
182
|
- lib/way_of_working/git/repo_reader.rb
|
|
115
183
|
- lib/way_of_working/git/summary_tag.rb
|
|
184
|
+
- lib/way_of_working/inclusive_language/alex.rb
|
|
185
|
+
- lib/way_of_working/inclusive_language/alex/generators/exec.rb
|
|
186
|
+
- lib/way_of_working/inclusive_language/alex/generators/init.rb
|
|
187
|
+
- lib/way_of_working/inclusive_language/alex/github_audit_rule.rb
|
|
188
|
+
- lib/way_of_working/inclusive_language/alex/templates/.alexignore
|
|
189
|
+
- lib/way_of_working/inclusive_language/alex/templates/.alexrc
|
|
190
|
+
- lib/way_of_working/inclusive_language/alex/templates/.github/workflows/inclusive-language.yml
|
|
191
|
+
- lib/way_of_working/inclusive_language/alex/templates/docs/way_of_working/inclusive-language.md
|
|
116
192
|
- lib/way_of_working/paths.rb
|
|
193
|
+
- lib/way_of_working/pull_request_template/hdi.rb
|
|
194
|
+
- lib/way_of_working/pull_request_template/hdi/generators/init.rb
|
|
195
|
+
- lib/way_of_working/pull_request_template/hdi/github_audit_rule.rb
|
|
196
|
+
- lib/way_of_working/pull_request_template/hdi/templates/.github/pull_request_template.md
|
|
197
|
+
- lib/way_of_working/pull_request_template/hdi/templates/docs/way_of_working/pull-request-template-and-guidelines.md
|
|
117
198
|
- lib/way_of_working/readme_badge.rb
|
|
118
199
|
- lib/way_of_working/readme_badge/generators/init.rb
|
|
119
200
|
- lib/way_of_working/readme_badge/github_audit_rule.rb
|
|
@@ -126,6 +207,10 @@ files:
|
|
|
126
207
|
- lib/way_of_working/sub_commands/new.rb
|
|
127
208
|
- lib/way_of_working/tasks.rb
|
|
128
209
|
- lib/way_of_working/version.rb
|
|
210
|
+
- lib/way_of_working/versioning/semver.rb
|
|
211
|
+
- lib/way_of_working/versioning/semver/generators/init.rb
|
|
212
|
+
- lib/way_of_working/versioning/semver/github_audit_rule.rb
|
|
213
|
+
- lib/way_of_working/versioning/semver/templates/docs/way_of_working/versioning.md
|
|
129
214
|
- way_of_working.gemspec
|
|
130
215
|
homepage: https://healthdatainsight.github.io/way_of_working
|
|
131
216
|
licenses:
|
|
@@ -151,7 +236,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
151
236
|
- !ruby/object:Gem::Version
|
|
152
237
|
version: '0'
|
|
153
238
|
requirements: []
|
|
154
|
-
rubygems_version: 3.
|
|
239
|
+
rubygems_version: 3.5.22
|
|
155
240
|
signing_key:
|
|
156
241
|
specification_version: 4
|
|
157
242
|
summary: RubyGem for the HDI way of working.
|