yaml-converter 0.2.1 → 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 +36 -1
- data/CONTRIBUTING.md +4 -1
- data/FUNDING.md +1 -5
- data/MIT.md +21 -0
- data/README.md +34 -18
- data/lib/yaml/converter/markdown_emitter.rb +1 -1
- data/lib/yaml/converter/streaming_emitter.rb +1 -1
- data/lib/yaml/converter/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +21 -20
- 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: eacf4ee6d856860e8c9d21a20cfbcaeafafefc322db57520bdd666bac9e5bd1f
|
|
4
|
+
data.tar.gz: e13ca40380536617144544d63a779eab88ae9fc8c991fbdc92111679f826b431
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 14f442c45b35c1519eb89c2cb3cc598b5855cdf5bac6c378ecc06671e24bbfbd0024b74c8aa429abab3177cf1522ab622a8223158daff2a7cd6a1d7a7a7ac3eb
|
|
7
|
+
data.tar.gz: d22b909cdfb54efb9b7d82a70af2678d56af6b5776d73f0744a888cf376d6110810ce3503c3c3b35723105dc9cac216b3fceb9604d11362e4084abfc3bb9ffca
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,37 @@ 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: 92.69% -- 444/479 lines in 10 files
|
|
37
|
+
- BRANCH COVERAGE: 67.63% -- 117/173 branches in 10 files
|
|
38
|
+
- 63.77% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Package configured license files in gem release file lists.
|
|
43
|
+
|
|
44
|
+
## [0.2.2] - 2026-06-22
|
|
45
|
+
|
|
46
|
+
- TAG: [v0.2.2][0.2.2t]
|
|
47
|
+
- COVERAGE: 92.69% -- 444/479 lines in 10 files
|
|
48
|
+
- BRANCH COVERAGE: 67.63% -- 117/173 branches in 10 files
|
|
49
|
+
- 63.77% documented
|
|
50
|
+
|
|
51
|
+
### Added
|
|
52
|
+
|
|
53
|
+
- Added support for JRuby 10.1 and TruffleRuby 34.0.
|
|
54
|
+
|
|
55
|
+
### Changed
|
|
56
|
+
|
|
57
|
+
- Retemplated project metadata and CI/development automation with `kettle-jem` v7.0.0.
|
|
58
|
+
|
|
59
|
+
### Fixed
|
|
60
|
+
|
|
61
|
+
- Updated generated footer links to point at the migrated `kettle-dev`
|
|
62
|
+
GitHub organization.
|
|
63
|
+
|
|
33
64
|
## [0.2.1] - 2026-06-15
|
|
34
65
|
|
|
35
66
|
- TAG: [v0.2.1][0.2.1t]
|
|
@@ -82,7 +113,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
82
113
|
|
|
83
114
|
### Security
|
|
84
115
|
|
|
85
|
-
[Unreleased]: https://github.com/galtzo-floss/yaml-converter/compare/v0.2.
|
|
116
|
+
[Unreleased]: https://github.com/galtzo-floss/yaml-converter/compare/v0.2.3...HEAD
|
|
117
|
+
[0.2.3]: https://github.com/galtzo-floss/yaml-converter/compare/v0.2.2...v0.2.3
|
|
118
|
+
[0.2.3t]: https://github.com/galtzo-floss/yaml-converter/releases/tag/v0.2.3
|
|
119
|
+
[0.2.2]: https://github.com/galtzo-floss/yaml-converter/compare/v0.2.1...v0.2.2
|
|
120
|
+
[0.2.2t]: https://github.com/galtzo-floss/yaml-converter/releases/tag/v0.2.2
|
|
86
121
|
[0.2.1]: https://github.com/galtzo-floss/yaml-converter/compare/v0.2.0...v0.2.1
|
|
87
122
|
[0.2.1t]: https://github.com/galtzo-floss/yaml-converter/releases/tag/v0.2.1
|
|
88
123
|
[0.2.0]: https://github.com/galtzo-floss/yaml-converter/compare/v0.1.0...v0.2.0
|
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/FUNDING.md
CHANGED
|
@@ -6,7 +6,7 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
|
|
|
6
6
|
|
|
7
7
|
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal]
|
|
8
8
|
|
|
9
|
-
[![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate
|
|
9
|
+
[![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
10
10
|
|
|
11
11
|
[⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
|
|
12
12
|
[⛳liberapay]: https://liberapay.com/pboling/donate
|
|
@@ -16,12 +16,8 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
|
|
|
16
16
|
[🖇osc-sponsors-i]: https://opencollective.com/galtzo-floss/sponsors/badge.svg?style=flat
|
|
17
17
|
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
|
18
18
|
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
19
|
-
[🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
|
|
20
|
-
[🖇polar]: https://polar.sh/pboling
|
|
21
19
|
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
|
|
22
20
|
[🖇kofi]: https://ko-fi.com/pboling
|
|
23
|
-
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
|
|
24
|
-
[🖇patreon]: https://patreon.com/galtzo
|
|
25
21
|
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
|
|
26
22
|
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
|
27
23
|
[🖇paypal-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=flat&logo=paypal
|
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/README.md
CHANGED
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
|
|
11
11
|
`if ci_badges.map(&:color).all? { it == "green"}` 👇️ send money so I can do more of this. FLOSS maintenance is now my full-time job.
|
|
12
12
|
|
|
13
|
-
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate
|
|
13
|
+
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
14
14
|
|
|
15
|
-
<details>
|
|
15
|
+
<details markdown="1">
|
|
16
16
|
<summary>👣 How will this project approach the September 2025 hostile takeover of RubyGems? 🚑️</summary>
|
|
17
17
|
|
|
18
18
|
I've summarized my thoughts in [this blog post](https://dev.to/galtzo/hostile-takeover-of-rubygems-my-thoughts-5hlo).
|
|
@@ -42,9 +42,9 @@ Alternatives (none in Ruby, send a PR if you know of one):
|
|
|
42
42
|
|
|
43
43
|
| Tokens to Remember | [![Gem name][⛳️name-img]][⛳️gem-name] [![Gem namespace][⛳️namespace-img]][⛳️gem-namespace] |
|
|
44
44
|
|-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
45
|
-
| Works with JRuby | [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
|
|
46
|
-
| Works with Truffle Ruby | [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎truby-24.2-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎truby-25.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf]|
|
|
47
|
-
| Works with MRI Ruby 4 | [![Ruby
|
|
45
|
+
| Works with JRuby | [![JRuby 10.0 Compat][💎jruby-10.0i]][🚎jruby-10.0-wf] [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
|
|
46
|
+
| Works with Truffle Ruby | [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎truby-24.2-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎truby-25.0-wf] [![Truffle Ruby 33.0 Compat][💎truby-33.0i]][🚎truby-33.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf] [![Truffle Ruby HEAD Compat][💎truby-headi]][🚎3-hd-wf]|
|
|
47
|
+
| Works with MRI Ruby 4 | [![Ruby current Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf]|
|
|
48
48
|
| Works with MRI Ruby 3 | [![Ruby 3.2 Compat][💎ruby-3.2i]][🚎ruby-3.2-wf] [![Ruby 3.3 Compat][💎ruby-3.3i]][🚎ruby-3.3-wf] [![Ruby 3.4 Compat][💎ruby-3.4i]][🚎ruby-3.4-wf]|
|
|
49
49
|
| Support & Community | [![Join Me on Daily.dev's RubyFriends][✉️ruby-friends-img]][✉️ruby-friends] [![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite] [![Get help from me on Upwork][👨🏼🏫expsup-upwork-img]][👨🏼🏫expsup-upwork] [![Get help from me on Codementor][👨🏼🏫expsup-codementor-img]][👨🏼🏫expsup-codementor] |
|
|
50
50
|
| Source | [![Source on GitLab.com][📜src-gl-img]][📜src-gl] [![Source on CodeBerg.org][📜src-cb-img]][📜src-cb] [![Source on Github.com][📜src-gh-img]][📜src-gh] [![The best SHA: dQw4w9WgXcQ!][🧮kloc-img]][🧮kloc] |
|
|
@@ -62,9 +62,25 @@ This test floor is configured by `ruby.test_minimum` in `.kettle-jem.yml` and
|
|
|
62
62
|
may be higher than the gem's runtime compatibility floor when legacy Rubies are
|
|
63
63
|
not practical for the current toolchain.
|
|
64
64
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
65
|
+
<a href="https://github.com/kettle-dev"><img alt="kettle-dev Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/kettle-dev/avatar-128px.svg" width="14%" align="right"/></a>
|
|
66
|
+
|
|
67
|
+
The _amazing_ test matrix is powered by the kettle-dev stack.
|
|
68
|
+
|
|
69
|
+
<details markdown="1">
|
|
70
|
+
<summary>How kettle-dev manages complexity in tests</summary>
|
|
71
|
+
|
|
72
|
+
| Gem | Source | Role | Daily download rank |
|
|
73
|
+
|-----|--------|------|---------------------|
|
|
74
|
+
| [appraisal2](https://bestgems.org/gems/appraisal2) | [GitHub](https://github.com/appraisal-rb/appraisal2) | multi-dependency Appraisal matrix generation | [](https://bestgems.org/gems/appraisal2) |
|
|
75
|
+
| [appraisal2-rubocop](https://bestgems.org/gems/appraisal2-rubocop) | [GitHub](https://github.com/appraisal-rb/appraisal2-rubocop) | RuboCop Appraisal generator integration | [](https://bestgems.org/gems/appraisal2-rubocop) |
|
|
76
|
+
| [kettle-dev](https://bestgems.org/gems/kettle-dev) | [GitHub](https://github.com/kettle-dev/kettle-dev) | development, release, and CI workflow tooling | [](https://bestgems.org/gems/kettle-dev) |
|
|
77
|
+
| [kettle-jem](https://bestgems.org/gems/kettle-jem) | [GitHub](https://github.com/kettle-dev/kettle-jem) | Appraisals & CI workflow templates | [](https://bestgems.org/gems/kettle-jem) |
|
|
78
|
+
| [kettle-soup-cover](https://bestgems.org/gems/kettle-soup-cover) | [GitHub](https://github.com/kettle-dev/kettle-soup-cover) | SimpleCov coverage policy and reporting | [](https://bestgems.org/gems/kettle-soup-cover) |
|
|
79
|
+
| [kettle-test](https://bestgems.org/gems/kettle-test) | [GitHub](https://github.com/kettle-dev/kettle-test) | standard test runner and coverage harness | [](https://bestgems.org/gems/kettle-test) |
|
|
80
|
+
| [rubocop-lts](https://bestgems.org/gems/rubocop-lts) | [GitHub](https://github.com/rubocop-lts/rubocop-lts) | Ruby-version-aware linting | [](https://bestgems.org/gems/rubocop-lts) |
|
|
81
|
+
| [turbo_tests2](https://bestgems.org/gems/turbo_tests2) | [GitHub](https://github.com/galtzo-floss/turbo_tests2) | parallel test execution | [](https://bestgems.org/gems/turbo_tests2) |
|
|
82
|
+
|
|
83
|
+
</details>
|
|
68
84
|
|
|
69
85
|
### Federated DVCS
|
|
70
86
|
|
|
@@ -413,7 +429,7 @@ NOTE: [kettle-readme-backers][kettle-readme-backers] updates this list every day
|
|
|
413
429
|
No sponsors yet. Be the first!
|
|
414
430
|
<!-- OPENCOLLECTIVE-ORGANIZATIONS:END -->
|
|
415
431
|
|
|
416
|
-
[kettle-readme-backers]: https://github.com/galtzo-floss/yaml-converter/blob/main/
|
|
432
|
+
[kettle-readme-backers]: https://github.com/galtzo-floss/yaml-converter/blob/main/bin/kettle-readme-backers
|
|
417
433
|
|
|
418
434
|
### Another way to support open-source
|
|
419
435
|
|
|
@@ -425,7 +441,7 @@ I’m developing a new library, [floss_funding][🖇floss-funding-gem], designed
|
|
|
425
441
|
|
|
426
442
|
**[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
|
|
427
443
|
|
|
428
|
-
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate
|
|
444
|
+
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
429
445
|
|
|
430
446
|
## 🔐 Security
|
|
431
447
|
|
|
@@ -471,7 +487,7 @@ Made with [contributors-img][🖐contrib-rocks].
|
|
|
471
487
|
|
|
472
488
|
Also see GitLab Contributors: [https://gitlab.com/galtzo-floss/yaml-converter/-/graphs/main][🚎contributors-gl]
|
|
473
489
|
|
|
474
|
-
<details>
|
|
490
|
+
<details markdown="1">
|
|
475
491
|
<summary>⭐️ Star History</summary>
|
|
476
492
|
|
|
477
493
|
<a href="https://star-history.com/galtzo-floss/yaml-converter&Date">
|
|
@@ -566,12 +582,8 @@ Thanks for RTFM. ☺️
|
|
|
566
582
|
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
|
567
583
|
[🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
|
|
568
584
|
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
569
|
-
[🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
|
|
570
|
-
[🖇polar]: https://polar.sh/pboling
|
|
571
585
|
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
|
|
572
586
|
[🖇kofi]: https://ko-fi.com/pboling
|
|
573
|
-
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
|
|
574
|
-
[🖇patreon]: https://patreon.com/galtzo
|
|
575
587
|
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
|
|
576
588
|
[🖇buyme-img]: https://img.buymeacoffee.com/button-api/?text=Buy%20me%20a%20latte&emoji=&slug=pboling&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff
|
|
577
589
|
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
|
@@ -652,8 +664,10 @@ Thanks for RTFM. ☺️
|
|
|
652
664
|
[🚎ruby-3.2-wf]: https://github.com/galtzo-floss/yaml-converter/actions/workflows/ruby-3.2.yml
|
|
653
665
|
[🚎ruby-3.3-wf]: https://github.com/galtzo-floss/yaml-converter/actions/workflows/ruby-3.3.yml
|
|
654
666
|
[🚎ruby-3.4-wf]: https://github.com/galtzo-floss/yaml-converter/actions/workflows/ruby-3.4.yml
|
|
667
|
+
[🚎jruby-10.0-wf]: https://github.com/galtzo-floss/yaml-converter/actions/workflows/jruby-10.0.yml
|
|
655
668
|
[🚎truby-24.2-wf]: https://github.com/galtzo-floss/yaml-converter/actions/workflows/truffleruby-24.2.yml
|
|
656
669
|
[🚎truby-25.0-wf]: https://github.com/galtzo-floss/yaml-converter/actions/workflows/truffleruby-25.0.yml
|
|
670
|
+
[🚎truby-33.0-wf]: https://github.com/galtzo-floss/yaml-converter/actions/workflows/truffleruby-33.0.yml
|
|
657
671
|
[🚎2-cov-wf]: https://github.com/galtzo-floss/yaml-converter/actions/workflows/coverage.yml
|
|
658
672
|
[🚎2-cov-wfi]: https://github.com/galtzo-floss/yaml-converter/actions/workflows/coverage.yml/badge.svg
|
|
659
673
|
[🚎3-hd-wf]: https://github.com/galtzo-floss/yaml-converter/actions/workflows/heads.yml
|
|
@@ -677,12 +691,14 @@ Thanks for RTFM. ☺️
|
|
|
677
691
|
[💎ruby-3.2i]: https://img.shields.io/badge/Ruby-3.2-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
678
692
|
[💎ruby-3.3i]: https://img.shields.io/badge/Ruby-3.3-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
679
693
|
[💎ruby-3.4i]: https://img.shields.io/badge/Ruby-3.4-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
680
|
-
[💎ruby-4.0i]: https://img.shields.io/badge/Ruby-4.0-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
681
694
|
[💎ruby-c-i]: https://img.shields.io/badge/Ruby-current-CC342D?style=for-the-badge&logo=ruby&logoColor=green
|
|
682
695
|
[💎ruby-headi]: https://img.shields.io/badge/Ruby-HEAD-CC342D?style=for-the-badge&logo=ruby&logoColor=blue
|
|
683
696
|
[💎truby-24.2i]: https://img.shields.io/badge/Truffle_Ruby-24.2-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
684
697
|
[💎truby-25.0i]: https://img.shields.io/badge/Truffle_Ruby-25.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
698
|
+
[💎truby-33.0i]: https://img.shields.io/badge/Truffle_Ruby-33.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
685
699
|
[💎truby-c-i]: https://img.shields.io/badge/Truffle_Ruby-current-34BCB1?style=for-the-badge&logo=ruby&logoColor=green
|
|
700
|
+
[💎truby-headi]: https://img.shields.io/badge/Truffle_Ruby-HEAD-34BCB1?style=for-the-badge&logo=ruby&logoColor=blue
|
|
701
|
+
[💎jruby-10.0i]: https://img.shields.io/badge/JRuby-10.0-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
|
686
702
|
[💎jruby-c-i]: https://img.shields.io/badge/JRuby-current-FBE742?style=for-the-badge&logo=ruby&logoColor=green
|
|
687
703
|
[💎jruby-headi]: https://img.shields.io/badge/JRuby-HEAD-FBE742?style=for-the-badge&logo=ruby&logoColor=blue
|
|
688
704
|
[🤝gh-issues]: https://github.com/galtzo-floss/yaml-converter/issues
|
|
@@ -739,7 +755,7 @@ Thanks for RTFM. ☺️
|
|
|
739
755
|
| Package | yaml-converter |
|
|
740
756
|
| Description | 🥨 yaml-converter parses YAML files (with inline #note: annotations and validation markers) and emits polished Markdown, HTML, and PDF/DOCX (via pandoc) outputs including a validation status line, fenced YAML blocks, and extracted notes. |
|
|
741
757
|
| Homepage | https://github.com/galtzo-floss/yaml-converter |
|
|
742
|
-
| Source | https://github.com/galtzo-floss/yaml-converter
|
|
758
|
+
| Source | https://github.com/galtzo-floss/yaml-converter |
|
|
743
759
|
| License | `MIT` |
|
|
744
|
-
| Funding | https://github.com/sponsors/pboling, https://
|
|
760
|
+
| Funding | https://github.com/sponsors/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/galtzo-floss, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/yaml-converter, https://www.buymeacoffee.com/pboling |
|
|
745
761
|
<!-- kettle-jem:metadata:end -->
|
|
@@ -41,7 +41,7 @@ module Yaml
|
|
|
41
41
|
sm = StateMachine.new(validation_status: @validation_status, max_line_length: @max_len, truncate: @truncate, margin_notes: @margin_notes, current_date: @options[:current_date])
|
|
42
42
|
body = sm.apply(tokens)
|
|
43
43
|
if @options[:emit_footer]
|
|
44
|
-
body << "---- \n\nProduced by [yaml-converter](https://github.com/kettle-
|
|
44
|
+
body << "---- \n\nProduced by [yaml-converter](https://github.com/kettle-dev/yaml-converter)"
|
|
45
45
|
end
|
|
46
46
|
body
|
|
47
47
|
end
|
|
@@ -126,7 +126,7 @@ module Yaml
|
|
|
126
126
|
def emit_footer
|
|
127
127
|
write_line("---- ")
|
|
128
128
|
write_line("")
|
|
129
|
-
write_line("Produced by [yaml-converter](https://github.com/kettle-
|
|
129
|
+
write_line("Produced by [yaml-converter](https://github.com/kettle-dev/yaml-converter)")
|
|
130
130
|
end
|
|
131
131
|
|
|
132
132
|
def write_line(s)
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yaml-converter
|
|
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
|
- Peter H. Boling
|
|
@@ -100,7 +100,7 @@ dependencies:
|
|
|
100
100
|
version: '1.1'
|
|
101
101
|
- - ">="
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: 1.1.
|
|
103
|
+
version: 1.1.13
|
|
104
104
|
type: :runtime
|
|
105
105
|
prerelease: false
|
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -110,27 +110,27 @@ dependencies:
|
|
|
110
110
|
version: '1.1'
|
|
111
111
|
- - ">="
|
|
112
112
|
- !ruby/object:Gem::Version
|
|
113
|
-
version: 1.1.
|
|
113
|
+
version: 1.1.13
|
|
114
114
|
- !ruby/object:Gem::Dependency
|
|
115
115
|
name: kettle-dev
|
|
116
116
|
requirement: !ruby/object:Gem::Requirement
|
|
117
117
|
requirements:
|
|
118
118
|
- - "~>"
|
|
119
119
|
- !ruby/object:Gem::Version
|
|
120
|
-
version: '2.
|
|
120
|
+
version: '2.3'
|
|
121
121
|
- - ">="
|
|
122
122
|
- !ruby/object:Gem::Version
|
|
123
|
-
version: 2.
|
|
123
|
+
version: 2.3.0
|
|
124
124
|
type: :development
|
|
125
125
|
prerelease: false
|
|
126
126
|
version_requirements: !ruby/object:Gem::Requirement
|
|
127
127
|
requirements:
|
|
128
128
|
- - "~>"
|
|
129
129
|
- !ruby/object:Gem::Version
|
|
130
|
-
version: '2.
|
|
130
|
+
version: '2.3'
|
|
131
131
|
- - ">="
|
|
132
132
|
- !ruby/object:Gem::Version
|
|
133
|
-
version: 2.
|
|
133
|
+
version: 2.3.0
|
|
134
134
|
- !ruby/object:Gem::Dependency
|
|
135
135
|
name: bundler-audit
|
|
136
136
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -188,7 +188,7 @@ dependencies:
|
|
|
188
188
|
version: '3.1'
|
|
189
189
|
- - ">="
|
|
190
190
|
- !ruby/object:Gem::Version
|
|
191
|
-
version: 3.1.
|
|
191
|
+
version: 3.1.4
|
|
192
192
|
type: :development
|
|
193
193
|
prerelease: false
|
|
194
194
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -198,7 +198,7 @@ dependencies:
|
|
|
198
198
|
version: '3.1'
|
|
199
199
|
- - ">="
|
|
200
200
|
- !ruby/object:Gem::Version
|
|
201
|
-
version: 3.1.
|
|
201
|
+
version: 3.1.4
|
|
202
202
|
- !ruby/object:Gem::Dependency
|
|
203
203
|
name: kettle-test
|
|
204
204
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -208,7 +208,7 @@ dependencies:
|
|
|
208
208
|
version: '2.0'
|
|
209
209
|
- - ">="
|
|
210
210
|
- !ruby/object:Gem::Version
|
|
211
|
-
version: 2.0.
|
|
211
|
+
version: 2.0.9
|
|
212
212
|
type: :development
|
|
213
213
|
prerelease: false
|
|
214
214
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -218,7 +218,7 @@ dependencies:
|
|
|
218
218
|
version: '2.0'
|
|
219
219
|
- - ">="
|
|
220
220
|
- !ruby/object:Gem::Version
|
|
221
|
-
version: 2.0.
|
|
221
|
+
version: 2.0.9
|
|
222
222
|
- !ruby/object:Gem::Dependency
|
|
223
223
|
name: turbo_tests2
|
|
224
224
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -228,7 +228,7 @@ dependencies:
|
|
|
228
228
|
version: '3.1'
|
|
229
229
|
- - ">="
|
|
230
230
|
- !ruby/object:Gem::Version
|
|
231
|
-
version: 3.1.
|
|
231
|
+
version: 3.1.6
|
|
232
232
|
type: :development
|
|
233
233
|
prerelease: false
|
|
234
234
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -238,7 +238,7 @@ dependencies:
|
|
|
238
238
|
version: '3.1'
|
|
239
239
|
- - ">="
|
|
240
240
|
- !ruby/object:Gem::Version
|
|
241
|
-
version: 3.1.
|
|
241
|
+
version: 3.1.6
|
|
242
242
|
- !ruby/object:Gem::Dependency
|
|
243
243
|
name: ruby-progressbar
|
|
244
244
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -262,7 +262,7 @@ dependencies:
|
|
|
262
262
|
version: '1.0'
|
|
263
263
|
- - ">="
|
|
264
264
|
- !ruby/object:Gem::Version
|
|
265
|
-
version: 1.0.
|
|
265
|
+
version: 1.0.4
|
|
266
266
|
type: :development
|
|
267
267
|
prerelease: false
|
|
268
268
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -272,7 +272,7 @@ dependencies:
|
|
|
272
272
|
version: '1.0'
|
|
273
273
|
- - ">="
|
|
274
274
|
- !ruby/object:Gem::Version
|
|
275
|
-
version: 1.0.
|
|
275
|
+
version: 1.0.4
|
|
276
276
|
- !ruby/object:Gem::Dependency
|
|
277
277
|
name: gitmoji-regex
|
|
278
278
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -282,7 +282,7 @@ dependencies:
|
|
|
282
282
|
version: '2.0'
|
|
283
283
|
- - ">="
|
|
284
284
|
- !ruby/object:Gem::Version
|
|
285
|
-
version: 2.0.
|
|
285
|
+
version: 2.0.4
|
|
286
286
|
type: :development
|
|
287
287
|
prerelease: false
|
|
288
288
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -292,7 +292,7 @@ dependencies:
|
|
|
292
292
|
version: '2.0'
|
|
293
293
|
- - ">="
|
|
294
294
|
- !ruby/object:Gem::Version
|
|
295
|
-
version: 2.0.
|
|
295
|
+
version: 2.0.4
|
|
296
296
|
description: "\U0001F968 yaml-converter parses YAML files (with inline #note: annotations
|
|
297
297
|
and validation markers) and emits polished Markdown, HTML, and PDF/DOCX (via pandoc)
|
|
298
298
|
outputs including a validation status line, fenced YAML blocks, and extracted notes."
|
|
@@ -318,6 +318,7 @@ files:
|
|
|
318
318
|
- CONTRIBUTING.md
|
|
319
319
|
- FUNDING.md
|
|
320
320
|
- LICENSE.md
|
|
321
|
+
- MIT.md
|
|
321
322
|
- README.md
|
|
322
323
|
- RUBOCOP.md
|
|
323
324
|
- SECURITY.md
|
|
@@ -344,10 +345,10 @@ licenses:
|
|
|
344
345
|
- MIT
|
|
345
346
|
metadata:
|
|
346
347
|
homepage_uri: https://yaml-converter.galtzo.com
|
|
347
|
-
source_code_uri: https://github.com/galtzo-floss/yaml-converter/tree/v0.2.
|
|
348
|
-
changelog_uri: https://github.com/galtzo-floss/yaml-converter/blob/v0.2.
|
|
348
|
+
source_code_uri: https://github.com/galtzo-floss/yaml-converter/tree/v0.2.3
|
|
349
|
+
changelog_uri: https://github.com/galtzo-floss/yaml-converter/blob/v0.2.3/CHANGELOG.md
|
|
349
350
|
bug_tracker_uri: https://github.com/galtzo-floss/yaml-converter/issues
|
|
350
|
-
documentation_uri: https://www.rubydoc.info/gems/yaml-converter/0.2.
|
|
351
|
+
documentation_uri: https://www.rubydoc.info/gems/yaml-converter/0.2.3
|
|
351
352
|
funding_uri: https://github.com/sponsors/pboling
|
|
352
353
|
wiki_uri: https://github.com/galtzo-floss/yaml-converter/wiki
|
|
353
354
|
news_uri: https://www.railsbling.com/tags/yaml-converter
|
metadata.gz.sig
CHANGED
|
Binary file
|