yard-yaml 0.2.2 → 0.2.3
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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +14 -1
- data/CONTRIBUTING.md +4 -1
- data/MIT.md +21 -0
- data/lib/yard/yaml/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +19 -18
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d4e54a97a9c1abdab4ed63a5c9297af73de0eb41cac1014edfc0dc430b1b082
|
|
4
|
+
data.tar.gz: a55b1fe7d830a330c959c7c98448c2dcc7506d9fe9a0f749ab6e9942b73cc718
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae65550df1352e6060e8a30901556e2d96b3f2f148a429e2672b5c637e4bf9c7e5976c9c118753d8edbcf121bb233240063d7927250511b9bf8db1ad44c89097
|
|
7
|
+
data.tar.gz: 1e66e186c47b666863a2ce2b573cfc1401be78e1aa0477390266376cc2cf68f78025ac46c29ea757c43e4cdbce611e487683a8d8863f6b97cc36453ae2b14f6e
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,17 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [0.2.3] - 2026-07-02
|
|
34
|
+
|
|
35
|
+
- TAG: [v0.2.3][0.2.3t]
|
|
36
|
+
- COVERAGE: 94.36% -- 519/550 lines in 13 files
|
|
37
|
+
- BRANCH COVERAGE: 83.25% -- 164/197 branches in 13 files
|
|
38
|
+
- 78.38% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Package configured license files in gem release file lists.
|
|
43
|
+
|
|
33
44
|
## [0.2.2] - 2026-06-22
|
|
34
45
|
|
|
35
46
|
- TAG: [v0.2.2][0.2.2t]
|
|
@@ -142,7 +153,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
142
153
|
|
|
143
154
|
### Security
|
|
144
155
|
|
|
145
|
-
[Unreleased]: https://github.com/galtzo-floss/yard-yaml/compare/v0.2.
|
|
156
|
+
[Unreleased]: https://github.com/galtzo-floss/yard-yaml/compare/v0.2.3...HEAD
|
|
157
|
+
[0.2.3]: https://github.com/galtzo-floss/yard-yaml/compare/v0.2.2...v0.2.3
|
|
158
|
+
[0.2.3t]: https://github.com/galtzo-floss/yard-yaml/releases/tag/v0.2.3
|
|
146
159
|
[0.2.2]: https://github.com/galtzo-floss/yard-yaml/compare/v0.2.1...v0.2.2
|
|
147
160
|
[0.2.2t]: https://github.com/galtzo-floss/yard-yaml/releases/tag/v0.2.2
|
|
148
161
|
[0.2.1]: https://github.com/galtzo-floss/yard-yaml/compare/v0.2.0...v0.2.1
|
data/CONTRIBUTING.md
CHANGED
|
@@ -131,9 +131,12 @@ toolchain, and it may be higher than the gemspec runtime floor.
|
|
|
131
131
|
They are created and updated with the commands:
|
|
132
132
|
|
|
133
133
|
```console
|
|
134
|
-
bin/rake appraisal:
|
|
134
|
+
bin/rake appraisal:generate
|
|
135
135
|
```
|
|
136
136
|
|
|
137
|
+
Use `bin/rake appraisal:update` when you intentionally need to resolve fresh
|
|
138
|
+
appraisal locks.
|
|
139
|
+
|
|
137
140
|
If you need to reset all gemfiles/*.gemfile.lock files:
|
|
138
141
|
|
|
139
142
|
```console
|
data/MIT.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
See [LICENSE.md](LICENSE.md) for the copyright notice.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/lib/yard/yaml/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yard-yaml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Annibelle Boling
|
|
@@ -78,20 +78,20 @@ dependencies:
|
|
|
78
78
|
requirements:
|
|
79
79
|
- - "~>"
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: '2.
|
|
81
|
+
version: '2.3'
|
|
82
82
|
- - ">="
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
|
-
version: 2.
|
|
84
|
+
version: 2.3.0
|
|
85
85
|
type: :development
|
|
86
86
|
prerelease: false
|
|
87
87
|
version_requirements: !ruby/object:Gem::Requirement
|
|
88
88
|
requirements:
|
|
89
89
|
- - "~>"
|
|
90
90
|
- !ruby/object:Gem::Version
|
|
91
|
-
version: '2.
|
|
91
|
+
version: '2.3'
|
|
92
92
|
- - ">="
|
|
93
93
|
- !ruby/object:Gem::Version
|
|
94
|
-
version: 2.
|
|
94
|
+
version: 2.3.0
|
|
95
95
|
- !ruby/object:Gem::Dependency
|
|
96
96
|
name: bundler-audit
|
|
97
97
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -149,7 +149,7 @@ dependencies:
|
|
|
149
149
|
version: '3.1'
|
|
150
150
|
- - ">="
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
|
-
version: 3.1.
|
|
152
|
+
version: 3.1.4
|
|
153
153
|
type: :development
|
|
154
154
|
prerelease: false
|
|
155
155
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -159,7 +159,7 @@ dependencies:
|
|
|
159
159
|
version: '3.1'
|
|
160
160
|
- - ">="
|
|
161
161
|
- !ruby/object:Gem::Version
|
|
162
|
-
version: 3.1.
|
|
162
|
+
version: 3.1.4
|
|
163
163
|
- !ruby/object:Gem::Dependency
|
|
164
164
|
name: kettle-test
|
|
165
165
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -169,7 +169,7 @@ dependencies:
|
|
|
169
169
|
version: '2.0'
|
|
170
170
|
- - ">="
|
|
171
171
|
- !ruby/object:Gem::Version
|
|
172
|
-
version: 2.0.
|
|
172
|
+
version: 2.0.9
|
|
173
173
|
type: :development
|
|
174
174
|
prerelease: false
|
|
175
175
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -179,7 +179,7 @@ dependencies:
|
|
|
179
179
|
version: '2.0'
|
|
180
180
|
- - ">="
|
|
181
181
|
- !ruby/object:Gem::Version
|
|
182
|
-
version: 2.0.
|
|
182
|
+
version: 2.0.9
|
|
183
183
|
- !ruby/object:Gem::Dependency
|
|
184
184
|
name: turbo_tests2
|
|
185
185
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -189,7 +189,7 @@ dependencies:
|
|
|
189
189
|
version: '3.1'
|
|
190
190
|
- - ">="
|
|
191
191
|
- !ruby/object:Gem::Version
|
|
192
|
-
version: 3.1.
|
|
192
|
+
version: 3.1.6
|
|
193
193
|
type: :development
|
|
194
194
|
prerelease: false
|
|
195
195
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -199,7 +199,7 @@ dependencies:
|
|
|
199
199
|
version: '3.1'
|
|
200
200
|
- - ">="
|
|
201
201
|
- !ruby/object:Gem::Version
|
|
202
|
-
version: 3.1.
|
|
202
|
+
version: 3.1.6
|
|
203
203
|
- !ruby/object:Gem::Dependency
|
|
204
204
|
name: ruby-progressbar
|
|
205
205
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -223,7 +223,7 @@ dependencies:
|
|
|
223
223
|
version: '1.0'
|
|
224
224
|
- - ">="
|
|
225
225
|
- !ruby/object:Gem::Version
|
|
226
|
-
version: 1.0.
|
|
226
|
+
version: 1.0.4
|
|
227
227
|
type: :development
|
|
228
228
|
prerelease: false
|
|
229
229
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -233,7 +233,7 @@ dependencies:
|
|
|
233
233
|
version: '1.0'
|
|
234
234
|
- - ">="
|
|
235
235
|
- !ruby/object:Gem::Version
|
|
236
|
-
version: 1.0.
|
|
236
|
+
version: 1.0.4
|
|
237
237
|
- !ruby/object:Gem::Dependency
|
|
238
238
|
name: gitmoji-regex
|
|
239
239
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -243,7 +243,7 @@ dependencies:
|
|
|
243
243
|
version: '2.0'
|
|
244
244
|
- - ">="
|
|
245
245
|
- !ruby/object:Gem::Version
|
|
246
|
-
version: 2.0.
|
|
246
|
+
version: 2.0.4
|
|
247
247
|
type: :development
|
|
248
248
|
prerelease: false
|
|
249
249
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -253,7 +253,7 @@ dependencies:
|
|
|
253
253
|
version: '2.0'
|
|
254
254
|
- - ">="
|
|
255
255
|
- !ruby/object:Gem::Version
|
|
256
|
-
version: 2.0.
|
|
256
|
+
version: 2.0.4
|
|
257
257
|
description: "\U0001F997 A YARD plugin for YAML documents"
|
|
258
258
|
email:
|
|
259
259
|
- floss@galtzo.com
|
|
@@ -276,6 +276,7 @@ files:
|
|
|
276
276
|
- CONTRIBUTING.md
|
|
277
277
|
- FUNDING.md
|
|
278
278
|
- LICENSE.md
|
|
279
|
+
- MIT.md
|
|
279
280
|
- README.md
|
|
280
281
|
- RUBOCOP.md
|
|
281
282
|
- SECURITY.md
|
|
@@ -300,10 +301,10 @@ licenses:
|
|
|
300
301
|
- MIT
|
|
301
302
|
metadata:
|
|
302
303
|
homepage_uri: https://yard-yaml.galtzo.com
|
|
303
|
-
source_code_uri: https://github.com/galtzo-floss/yard-yaml/tree/v0.2.
|
|
304
|
-
changelog_uri: https://github.com/galtzo-floss/yard-yaml/blob/v0.2.
|
|
304
|
+
source_code_uri: https://github.com/galtzo-floss/yard-yaml/tree/v0.2.3
|
|
305
|
+
changelog_uri: https://github.com/galtzo-floss/yard-yaml/blob/v0.2.3/CHANGELOG.md
|
|
305
306
|
bug_tracker_uri: https://github.com/galtzo-floss/yard-yaml/issues
|
|
306
|
-
documentation_uri: https://www.rubydoc.info/gems/yard-yaml/0.2.
|
|
307
|
+
documentation_uri: https://www.rubydoc.info/gems/yard-yaml/0.2.3
|
|
307
308
|
funding_uri: https://github.com/sponsors/pboling
|
|
308
309
|
wiki_uri: https://github.com/galtzo-floss/yard-yaml/wiki
|
|
309
310
|
news_uri: https://www.railsbling.com/tags/yard-yaml
|
metadata.gz.sig
CHANGED
|
Binary file
|