philiprehberger-json_path 0.1.1 → 0.1.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 +13 -1
- data/README.md +1 -1
- data/lib/philiprehberger/json_path/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 67b50d193a1ce3c65574eddaec4c7b40ce04c0819712877714a9013f26ee3f69
|
|
4
|
+
data.tar.gz: 0f769467ad110337811bf0e5458b27a01a6dc6838ea84b06b1120f9541fb737d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3044b0a14a81870dc87f98fe4f284f7cef368dcc878b00d71d25e463f87af8e31c783d8db6a8fad7782d9ad6e998d8e0e6c54ef4d0d2f066030819c119e8fab0
|
|
7
|
+
data.tar.gz: 1cd739462ce10fad468dfe6cefba6b42182c0346004d43cdfa971eb1517245031daf2e76936f460dcdd8ab456bd952b4e096310a147f8d0616b3b4782c833a0f
|
data/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
|
-
|
|
9
|
+
|
|
10
|
+
## [0.1.3] - 2026-03-23
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Standardize README description to match template guide
|
|
14
|
+
- Update gemspec summary to match README description
|
|
15
|
+
|
|
16
|
+
## [0.1.2] - 2026-03-22
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Expand test coverage with edge cases, filter operators, slices, and boundary conditions
|
|
20
|
+
|
|
21
|
+
## [0.1.1] - 2026-03-22
|
|
10
22
|
|
|
11
23
|
### Added
|
|
12
24
|
- Add bug_tracker_uri metadata to gemspec
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-json_path)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
|
-
JSONPath expression evaluator
|
|
7
|
+
JSONPath expression evaluator with dot notation, wildcards, slices, and filters
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-json_path
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
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-
|
|
11
|
+
date: 2026-03-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Evaluate JSONPath expressions against Ruby hashes and arrays. Supports
|
|
14
14
|
dot notation, array indexing, wildcards, slices, and filter expressions for querying
|
|
@@ -51,5 +51,5 @@ requirements: []
|
|
|
51
51
|
rubygems_version: 3.5.22
|
|
52
52
|
signing_key:
|
|
53
53
|
specification_version: 4
|
|
54
|
-
summary: JSONPath expression evaluator
|
|
54
|
+
summary: JSONPath expression evaluator with dot notation, wildcards, slices, and filters
|
|
55
55
|
test_files: []
|