philiprehberger-toml_kit 0.2.0 → 0.2.4
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 +20 -0
- data/README.md +19 -3
- data/lib/philiprehberger/toml_kit/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f26a997551860b6225437012c11bee16dd81f8b20be5daf280d87e10b3f4b842
|
|
4
|
+
data.tar.gz: 9bf2e377233636b4bf619b0bcacec17d0fa2638a46d329230eb1c2ca9af35b3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 328d22b2d58478a2890f3e6b6470cfb6c188ff96fc0db22570422b4daecf362745659fe34a2a08a6fa6dd04208b98c67d5580811729cb6560cd7a484fa244850
|
|
7
|
+
data.tar.gz: 8cc9518b64da7aedad615f29cbb480b8778a23d9461ef1efbfe36431b79793aef03625fbe0d24459b46a4ec5df52991d6eaeacc0da6ee984d4637266f47abe01
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.4] - 2026-04-09
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- CI: split long gemspec summary line to satisfy RuboCop Layout/LineLength.
|
|
14
|
+
|
|
15
|
+
## [0.2.3] - 2026-04-08
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- Align gemspec summary with README description.
|
|
19
|
+
|
|
20
|
+
## [0.2.2] - 2026-03-31
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- Add GitHub issue templates, dependabot config, and PR template
|
|
24
|
+
|
|
25
|
+
## [0.2.1] - 2026-03-31
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
- Standardize README badges, support section, and license format
|
|
29
|
+
|
|
10
30
|
## [0.2.0] - 2026-03-28
|
|
11
31
|
|
|
12
32
|
### Added
|
data/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# philiprehberger-toml_kit
|
|
2
2
|
|
|
3
|
-
[](https://github.com/philiprehberger/rb-toml-kit/actions/workflows/ci.yml)
|
|
3
|
+
[](https://github.com/philiprehberger/rb-toml-kit/actions/workflows/ci.yml)
|
|
4
|
+
[](https://rubygems.org/gems/philiprehberger-toml_kit)
|
|
5
|
+
[](https://github.com/philiprehberger/rb-toml-kit/commits/main)
|
|
4
6
|
|
|
5
|
-
TOML v1.0 parser and serializer for Ruby with comment preservation, schema validation, merging, querying, type coercion, and diffing
|
|
7
|
+
TOML v1.0 parser and serializer for Ruby with comment preservation, schema validation, merging, querying, type coercion, and diffing
|
|
6
8
|
|
|
7
9
|
## Requirements
|
|
8
10
|
|
|
@@ -285,7 +287,21 @@ bundle exec rubocop
|
|
|
285
287
|
|
|
286
288
|
## Support
|
|
287
289
|
|
|
288
|
-
|
|
290
|
+
If you find this project useful:
|
|
291
|
+
|
|
292
|
+
⭐ [Star the repo](https://github.com/philiprehberger/rb-toml-kit)
|
|
293
|
+
|
|
294
|
+
🐛 [Report issues](https://github.com/philiprehberger/rb-toml-kit/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
|
|
295
|
+
|
|
296
|
+
💡 [Suggest features](https://github.com/philiprehberger/rb-toml-kit/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
|
|
297
|
+
|
|
298
|
+
❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
|
|
299
|
+
|
|
300
|
+
🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
|
|
301
|
+
|
|
302
|
+
💻 [GitHub Profile](https://github.com/philiprehberger)
|
|
303
|
+
|
|
304
|
+
🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
|
|
289
305
|
|
|
290
306
|
## License
|
|
291
307
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-toml_kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Philip Rehberger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-04-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Parse and generate TOML v1.0 documents with full type support including
|
|
14
14
|
datetimes, inline tables, and array of tables. Zero dependencies.
|
|
@@ -31,11 +31,11 @@ files:
|
|
|
31
31
|
- lib/philiprehberger/toml_kit/serializer.rb
|
|
32
32
|
- lib/philiprehberger/toml_kit/type_coercion.rb
|
|
33
33
|
- lib/philiprehberger/toml_kit/version.rb
|
|
34
|
-
homepage: https://
|
|
34
|
+
homepage: https://philiprehberger.com/open-source-packages/ruby/philiprehberger-toml_kit
|
|
35
35
|
licenses:
|
|
36
36
|
- MIT
|
|
37
37
|
metadata:
|
|
38
|
-
homepage_uri: https://
|
|
38
|
+
homepage_uri: https://philiprehberger.com/open-source-packages/ruby/philiprehberger-toml_kit
|
|
39
39
|
source_code_uri: https://github.com/philiprehberger/rb-toml-kit
|
|
40
40
|
changelog_uri: https://github.com/philiprehberger/rb-toml-kit/blob/main/CHANGELOG.md
|
|
41
41
|
bug_tracker_uri: https://github.com/philiprehberger/rb-toml-kit/issues
|
|
@@ -58,5 +58,6 @@ requirements: []
|
|
|
58
58
|
rubygems_version: 3.5.22
|
|
59
59
|
signing_key:
|
|
60
60
|
specification_version: 4
|
|
61
|
-
summary: TOML v1.0 parser and serializer for Ruby
|
|
61
|
+
summary: TOML v1.0 parser and serializer for Ruby with comment preservation, schema
|
|
62
|
+
validation, merging, querying, type coercion, and diffing
|
|
62
63
|
test_files: []
|