philiprehberger-json_schema 0.2.1 → 0.2.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 +10 -0
- data/lib/philiprehberger/json_schema/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 143f39a54828b31d7a745796701be504fc920b45bf6854216d12310fedcc1a18
|
|
4
|
+
data.tar.gz: 662b04162211c5b5d85efb5a0b378c21da0f54457866485c94e3760388662d29
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9b492cac2a6bfa9d117979d5ba899b41b88c187373f99073cee4d46ab2a5b8c0e3e2de340ea68d40538b99f54c65a240b8ff04703d5a4a885076cb993c991eb
|
|
7
|
+
data.tar.gz: b18f7bef9389eae54ba47f7c5caf3d2c6de778a7923ff2bd0e14838b86861d25bca489fada64f73606c490f740769d75d263ee2cefb32e3cdc69669f57cbd9da
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.3] - 2026-04-09
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- CI: split long gemspec summary line to satisfy RuboCop Layout/LineLength.
|
|
14
|
+
|
|
15
|
+
## [0.2.2] - 2026-04-08
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- Align gemspec summary with README description.
|
|
19
|
+
|
|
10
20
|
## [0.2.1] - 2026-03-31
|
|
11
21
|
|
|
12
22
|
### Changed
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-json_schema
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
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-
|
|
11
|
+
date: 2026-04-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Validate Ruby data structures against JSON Schema definitions with support
|
|
14
14
|
for type checking, required properties, pattern matching, numeric ranges, enums,
|
|
@@ -25,11 +25,11 @@ files:
|
|
|
25
25
|
- lib/philiprehberger/json_schema.rb
|
|
26
26
|
- lib/philiprehberger/json_schema/validator.rb
|
|
27
27
|
- lib/philiprehberger/json_schema/version.rb
|
|
28
|
-
homepage: https://
|
|
28
|
+
homepage: https://philiprehberger.com/open-source-packages/ruby/philiprehberger-json_schema
|
|
29
29
|
licenses:
|
|
30
30
|
- MIT
|
|
31
31
|
metadata:
|
|
32
|
-
homepage_uri: https://
|
|
32
|
+
homepage_uri: https://philiprehberger.com/open-source-packages/ruby/philiprehberger-json_schema
|
|
33
33
|
source_code_uri: https://github.com/philiprehberger/rb-json-schema
|
|
34
34
|
changelog_uri: https://github.com/philiprehberger/rb-json-schema/blob/main/CHANGELOG.md
|
|
35
35
|
bug_tracker_uri: https://github.com/philiprehberger/rb-json-schema/issues
|
|
@@ -52,5 +52,6 @@ requirements: []
|
|
|
52
52
|
rubygems_version: 3.5.22
|
|
53
53
|
signing_key:
|
|
54
54
|
specification_version: 4
|
|
55
|
-
summary: JSON Schema validator supporting common draft-07 keywords
|
|
55
|
+
summary: JSON Schema validator supporting common draft-07 keywords with schema composition,
|
|
56
|
+
conditional validation, and compiled schemas
|
|
56
57
|
test_files: []
|