philiprehberger-schema_validator 0.3.2 → 0.3.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 +11 -0
- data/README.md +3 -2
- data/lib/philiprehberger/schema_validator/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: d369b9b05d21672c0daeb5c6b4da6af7b42678047051178e910e54d690f86abd
|
|
4
|
+
data.tar.gz: 22dfdff395b61d63fcacce57c41456b088d06f02a1e03e62faf9a90b5cb01684
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 736e2ba015bef5b10907c67ae56da557b82437fd107124ba29c0b6a5fca5144b6965d11fb95833c4f02c5e070cf38700679060509dc47fd79fd218dc91337c2f
|
|
7
|
+
data.tar.gz: 8883f55cd1676ce6cbf2f832746607cb11547a13738d62e4b55974fdc885ee8f584b07c8395db6ae5bfdc8430edaad0c98b572c25e33f0ecb067c8d7f51d5161
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.3.4] - 2026-03-26
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Add Sponsor badge to README
|
|
14
|
+
- Fix license section link format
|
|
15
|
+
|
|
16
|
+
## [0.3.3] - 2026-03-24
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
- Align README one-liner with gemspec summary
|
|
20
|
+
|
|
10
21
|
## [0.3.2] - 2026-03-24
|
|
11
22
|
|
|
12
23
|
### Fixed
|
data/README.md
CHANGED
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
[](https://github.com/philiprehberger/rb-schema-validator/actions/workflows/ci.yml)
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-schema_validator)
|
|
5
5
|
[](LICENSE)
|
|
6
|
+
[](https://github.com/sponsors/philiprehberger)
|
|
6
7
|
|
|
7
|
-
Lightweight schema validation for
|
|
8
|
+
Lightweight schema validation for hashes with type coercion
|
|
8
9
|
|
|
9
10
|
## Requirements
|
|
10
11
|
|
|
@@ -281,4 +282,4 @@ bundle exec rubocop
|
|
|
281
282
|
|
|
282
283
|
## License
|
|
283
284
|
|
|
284
|
-
MIT
|
|
285
|
+
[MIT](LICENSE)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-schema_validator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.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-03-
|
|
11
|
+
date: 2026-03-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A zero-dependency Ruby gem for validating hash data against schemas with
|
|
14
14
|
type checking, coercion, required/optional fields, and custom validators.
|