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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e6bc1595bf066c7ec7811b7fafc68050d5cb1d7c0b4ecc1fff400a4c8df9c2d4
4
- data.tar.gz: efa897db8a70ab78f90ea06f4b78d6fdf8d0fa5e066ca6e8890b306bf714a765
3
+ metadata.gz: 143f39a54828b31d7a745796701be504fc920b45bf6854216d12310fedcc1a18
4
+ data.tar.gz: 662b04162211c5b5d85efb5a0b378c21da0f54457866485c94e3760388662d29
5
5
  SHA512:
6
- metadata.gz: 25ae9596ca36a0dfbeacf8eb75f995423b7d791ea742b857c53dedb86d085917e7e9413e1f2b3b4a595cc224561cd7df919039ebe1da08963fe6cf20b4f7a735
7
- data.tar.gz: 54c93f5d13a89969f1d3efdcab8fa52b3f85afef67930502c77a78f5899c5e54a9751e0ad2fd391b0a2ee0805f3defe9de8aadab83f31a13469f61be1bcb0e92
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module JsonSchema
5
- VERSION = '0.2.1'
5
+ VERSION = '0.2.3'
6
6
  end
7
7
  end
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.1
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-03-31 00:00:00.000000000 Z
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://github.com/philiprehberger/rb-json-schema
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://github.com/philiprehberger/rb-json-schema
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: []