philiprehberger-struct_kit 0.1.3 → 0.1.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 +4 -0
- data/README.md +3 -3
- data/lib/philiprehberger/struct_kit/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d5d9b258c98acd447cf92502edf49357f78f00f85d6cdd313970e1b07cd95677
|
|
4
|
+
data.tar.gz: b0d82317df7dbfa4d9823106bcb7c42bbf5af0d13e3a68bc08d284c51a525c87
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da6e07700a78904b6355d51326ae2c3d94c6f56c37a5cf80944292aaa423690c50b6d2b4612be20bfa2d5758d4d1681e44b14c640bc0f60f2e144cf1bdb7b86c
|
|
7
|
+
data.tar.gz: 7ed250947622eea79b190be6f058048c198f16a79ea6a4f9bd37f2e4ee9c6e246a666825de949c12106b9ceefd5111c86124565e1cc2e06766ef935406c1aaa5
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
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.4] - 2026-03-22
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Fix README badges to match template (Tests, Gem Version, License)
|
|
9
13
|
n## [0.1.3] - 2026-03-22
|
|
10
14
|
|
|
11
15
|
### Changed
|
data/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# philiprehberger-struct_kit
|
|
2
2
|
|
|
3
|
-
[](https://github.com/philiprehberger/rb-struct-kit/actions/workflows/ci.yml)
|
|
4
|
+
[](https://rubygems.org/gems/philiprehberger-struct_kit)
|
|
5
|
+
[](LICENSE)
|
|
6
6
|
|
|
7
7
|
Enhanced struct builder with typed fields, defaults, validation, and pattern matching.
|
|
8
8
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- philiprehberger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Define data classes with typed fields, default values, validation rules,
|
|
14
14
|
and pattern matching support. Immutable by default with keyword-only construction,
|