philiprehberger-struct_kit 0.1.3 → 0.1.5
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 +11 -0
- data/README.md +7 -7
- 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: be86c519c2a3962d06ee1210cc5da2a13f413e27a7fc9948d82c6cc4e027ecb8
|
|
4
|
+
data.tar.gz: 1a8af2a6410d7d3be546807e74411353c0d66b5c0d6551dcaee169e9ac48832c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d178a53e48d1b4ee79c29bc2e90acceb04602096d8d9816d98a276c6a24542cd19d547acdf027d5aca94bfc3e37b76e60801b7370d951d035f5d4788dde6b72
|
|
7
|
+
data.tar.gz: 06026c441836b34989c0e53d830b98ea376140684d74a199f9d4d975a0b6b6abb8e94558788324305d7c08a4fc9a1e7d60bf09569df58b3cb1c9f6b583877c95
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,17 @@ 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
|
+
|
|
10
|
+
## [0.1.5] - 2026-03-23
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Standardize README to match template (installation order, code fences, license section, one-liner format)
|
|
14
|
+
- Update gemspec summary to match README description
|
|
15
|
+
|
|
16
|
+
## [0.1.4] - 2026-03-22
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Fix README badges to match template (Tests, Gem Version, License)
|
|
9
20
|
n## [0.1.3] - 2026-03-22
|
|
10
21
|
|
|
11
22
|
### Changed
|
data/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
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
|
-
Enhanced struct builder with typed fields, defaults, validation, and pattern matching
|
|
7
|
+
Enhanced struct builder with typed fields, defaults, validation, and pattern matching
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
|
@@ -20,7 +20,7 @@ gem 'philiprehberger-struct_kit'
|
|
|
20
20
|
|
|
21
21
|
Or install directly:
|
|
22
22
|
|
|
23
|
-
```
|
|
23
|
+
```bash
|
|
24
24
|
gem install philiprehberger-struct_kit
|
|
25
25
|
```
|
|
26
26
|
|
|
@@ -139,7 +139,7 @@ Define a new struct class. Evaluates the block in DSL context.
|
|
|
139
139
|
|
|
140
140
|
## Development
|
|
141
141
|
|
|
142
|
-
```
|
|
142
|
+
```bash
|
|
143
143
|
bundle install
|
|
144
144
|
bundle exec rspec
|
|
145
145
|
bundle exec rubocop
|
|
@@ -147,4 +147,4 @@ bundle exec rubocop
|
|
|
147
147
|
|
|
148
148
|
## License
|
|
149
149
|
|
|
150
|
-
MIT
|
|
150
|
+
MIT
|
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.5
|
|
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,
|