philiprehberger-json_schema 0.2.0 → 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: 71c0646d1cf4867dc7adb49b87553d8a4b65d3d07f0d412a79ccd90241348a7b
4
- data.tar.gz: 60592fc87495847e060be651df7ae693090e8fc08dc9b98a36bbcfe5b60aaf64
3
+ metadata.gz: 143f39a54828b31d7a745796701be504fc920b45bf6854216d12310fedcc1a18
4
+ data.tar.gz: 662b04162211c5b5d85efb5a0b378c21da0f54457866485c94e3760388662d29
5
5
  SHA512:
6
- metadata.gz: 1596215825b8e9d9268fa923d3ffe9432510ecd01b69c667514ca5b4ae85c9232adfa8ad73e7c00381893c5bdf02cfdaa9d16881a49e8b8e2a1361bb55125dbc
7
- data.tar.gz: ce134436e9ec0421d5bab278aa51caa8d419b8c6999e2982a57cb8c441c2d4b45ad38e967ee778a7de4486957d131485a426e9c2741d263b59bcb215f6880f25
6
+ metadata.gz: b9b492cac2a6bfa9d117979d5ba899b41b88c187373f99073cee4d46ab2a5b8c0e3e2de340ea68d40538b99f54c65a240b8ff04703d5a4a885076cb993c991eb
7
+ data.tar.gz: b18f7bef9389eae54ba47f7c5caf3d2c6de778a7923ff2bd0e14838b86861d25bca489fada64f73606c490f740769d75d263ee2cefb32e3cdc69669f57cbd9da
data/CHANGELOG.md CHANGED
@@ -7,6 +7,21 @@ 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
+
20
+ ## [0.2.1] - 2026-03-31
21
+
22
+ ### Changed
23
+ - Standardize README badges, support section, and license format
24
+
10
25
  ## [0.2.0] - 2026-03-27
11
26
 
12
27
  ### Added
data/README.md CHANGED
@@ -2,12 +2,7 @@
2
2
 
3
3
  [![Tests](https://github.com/philiprehberger/rb-json-schema/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-json-schema/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-json_schema.svg)](https://rubygems.org/gems/philiprehberger-json_schema)
5
- [![GitHub release](https://img.shields.io/github/v/release/philiprehberger/rb-json-schema)](https://github.com/philiprehberger/rb-json-schema/releases)
6
5
  [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/rb-json-schema)](https://github.com/philiprehberger/rb-json-schema/commits/main)
7
- [![License](https://img.shields.io/github/license/philiprehberger/rb-json-schema)](LICENSE)
8
- [![Bug Reports](https://img.shields.io/github/issues/philiprehberger/rb-json-schema/bug)](https://github.com/philiprehberger/rb-json-schema/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
9
- [![Feature Requests](https://img.shields.io/github/issues/philiprehberger/rb-json-schema/enhancement)](https://github.com/philiprehberger/rb-json-schema/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
10
- [![Sponsor](https://img.shields.io/badge/sponsor-GitHub%20Sponsors-ec6cb9)](https://github.com/sponsors/philiprehberger)
11
6
 
12
7
  JSON Schema validator supporting common draft-07 keywords with schema composition, conditional validation, and compiled schemas
13
8
 
@@ -210,10 +205,21 @@ bundle exec rubocop
210
205
 
211
206
  ## Support
212
207
 
213
- If you find this package useful, consider giving it a star on GitHub — it helps motivate continued maintenance and development.
208
+ If you find this project useful:
214
209
 
215
- [![LinkedIn](https://img.shields.io/badge/Philip%20Rehberger-LinkedIn-0A66C2?logo=linkedin)](https://www.linkedin.com/in/philiprehberger)
216
- [![More packages](https://img.shields.io/badge/more-open%20source%20packages-blue)](https://philiprehberger.com/open-source-packages)
210
+ [Star the repo](https://github.com/philiprehberger/rb-json-schema)
211
+
212
+ 🐛 [Report issues](https://github.com/philiprehberger/rb-json-schema/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
213
+
214
+ 💡 [Suggest features](https://github.com/philiprehberger/rb-json-schema/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
215
+
216
+ ❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
217
+
218
+ 🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
219
+
220
+ 💻 [GitHub Profile](https://github.com/philiprehberger)
221
+
222
+ 🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
217
223
 
218
224
  ## License
219
225
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module JsonSchema
5
- VERSION = '0.2.0'
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.0
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-28 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: []