philiprehberger-struct_kit 0.1.1 → 0.1.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
- data/CHANGELOG.md +15 -3
- data/README.md +1 -0
- data/lib/philiprehberger/struct_kit/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 92afbe8c3c9297ca5d7cadbb8786b22583a8e3c0fcf0f9c2d6786a7c4c2f91fc
|
|
4
|
+
data.tar.gz: 67b3cce4191537593f6dec2e5cfdc9777c1d3ee245b3ab84c36dcef117b8d9d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96e5ff66a5fa330398700cf1b1dcf09aa1655241742e89845cb2eef7664a935a452e9d18abd08a9dd04d0c0d3628057dde6138627925f35625a6c688e7bf5c28
|
|
7
|
+
data.tar.gz: e559631d00365b3959331c649a40c0e7f7e24b4b8b8f22df974c8bb858b4f63cf28b3eabcdc4586bb94259341b795ec3ec1c8602e0f46845cfa7e9688cb78b0b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
All notable changes to this
|
|
3
|
+
All notable changes to this gem will be documented in this file.
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
-
and this
|
|
6
|
+
and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
|
-
n## [0.1.
|
|
9
|
+
n## [0.1.3] - 2026-03-22
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Add License badge to README
|
|
13
|
+
|
|
14
|
+
## [0.1.2] - 2026-03-22
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Fix CHANGELOG header wording
|
|
19
|
+
- Add bug_tracker_uri to gemspec
|
|
20
|
+
|
|
21
|
+
## [0.1.1] - 2026-03-22
|
|
10
22
|
|
|
11
23
|
### Changed
|
|
12
24
|
- Improve source code, tests, and rubocop compliance
|
data/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# philiprehberger-struct_kit
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/rb/philiprehberger-struct_kit)
|
|
4
|
+
$badge_line
|
|
4
5
|
[](https://github.com/philiprehberger/rb-struct-kit/actions/workflows/ci.yml)
|
|
5
6
|
|
|
6
7
|
Enhanced struct builder with typed fields, defaults, validation, and pattern matching.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-struct_kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- philiprehberger
|
|
@@ -33,6 +33,7 @@ metadata:
|
|
|
33
33
|
homepage_uri: https://github.com/philiprehberger/rb-struct-kit
|
|
34
34
|
source_code_uri: https://github.com/philiprehberger/rb-struct-kit
|
|
35
35
|
changelog_uri: https://github.com/philiprehberger/rb-struct-kit/blob/main/CHANGELOG.md
|
|
36
|
+
bug_tracker_uri: https://github.com/philiprehberger/rb-struct-kit/issues
|
|
36
37
|
rubygems_mfa_required: 'true'
|
|
37
38
|
post_install_message:
|
|
38
39
|
rdoc_options: []
|