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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 92afbe8c3c9297ca5d7cadbb8786b22583a8e3c0fcf0f9c2d6786a7c4c2f91fc
4
- data.tar.gz: 67b3cce4191537593f6dec2e5cfdc9777c1d3ee245b3ab84c36dcef117b8d9d9
3
+ metadata.gz: be86c519c2a3962d06ee1210cc5da2a13f413e27a7fc9948d82c6cc4e027ecb8
4
+ data.tar.gz: 1a8af2a6410d7d3be546807e74411353c0d66b5c0d6551dcaee169e9ac48832c
5
5
  SHA512:
6
- metadata.gz: 96e5ff66a5fa330398700cf1b1dcf09aa1655241742e89845cb2eef7664a935a452e9d18abd08a9dd04d0c0d3628057dde6138627925f35625a6c688e7bf5c28
7
- data.tar.gz: e559631d00365b3959331c649a40c0e7f7e24b4b8b8f22df974c8bb858b4f63cf28b3eabcdc4586bb94259341b795ec3ec1c8602e0f46845cfa7e9688cb78b0b
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
- [![Gem Version](https://badge.fury.io/rb/philiprehberger-struct_kit.svg)](https://badge.fury.io/rb/philiprehberger-struct_kit)
4
- $badge_line
5
- [![CI](https://github.com/philiprehberger/rb-struct-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-struct-kit/actions/workflows/ci.yml)
3
+ [![Tests](https://github.com/philiprehberger/rb-struct-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-struct-kit/actions/workflows/ci.yml)
4
+ [![Gem Version](https://badge.fury.io/rb/philiprehberger-struct_kit.svg)](https://rubygems.org/gems/philiprehberger-struct_kit)
5
+ [![License](https://img.shields.io/github/license/philiprehberger/rb-struct-kit)](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
- ```sh
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
- ```sh
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 License. See [LICENSE](LICENSE) for details.
150
+ MIT
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module StructKit
5
- VERSION = '0.1.3'
5
+ VERSION = '0.1.5'
6
6
  end
7
7
  end
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.3
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-22 00:00:00.000000000 Z
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,