philiprehberger-json_path 0.1.3 → 0.1.5
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 +4 -4
- data/lib/philiprehberger/json_path/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: 7bcaca274fbd47dee05beb773f0fb107c00304ef72f08cbf0543d42c741c0442
|
|
4
|
+
data.tar.gz: 23de484fe02670cd7635fca2bd22b42af9acde14dc4b151397d353f5340c5c46
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bd9a1a223f9c225d4eeceb34c1c2726d4b5627720d2087551f9ae9c4ad37ff5bb83a421f98cb84cff5240ce6dddb2c6838f763b3b486d383d596abfb05eb188
|
|
7
|
+
data.tar.gz: 06da48fe3821d49906c3069529ce40f8fc58d74d84cac720235314e859ce331a1be54759422d2e10bd8b7bf8b4645b8f7fb1ae769243e0681704695cac6e4e38
|
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.1.5] - 2026-03-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Standardize README code examples to use double-quote require statements
|
|
14
|
+
|
|
15
|
+
## [0.1.4] - 2026-03-24
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Fix Installation section quote style to double quotes
|
|
19
|
+
- Remove inline comments from Development section to match template
|
|
20
|
+
|
|
10
21
|
## [0.1.3] - 2026-03-23
|
|
11
22
|
|
|
12
23
|
### Fixed
|
data/README.md
CHANGED
|
@@ -15,7 +15,7 @@ JSONPath expression evaluator with dot notation, wildcards, slices, and filters
|
|
|
15
15
|
Add to your Gemfile:
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
|
-
gem
|
|
18
|
+
gem "philiprehberger-json_path"
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
Or install directly:
|
|
@@ -27,7 +27,7 @@ gem install philiprehberger-json_path
|
|
|
27
27
|
## Usage
|
|
28
28
|
|
|
29
29
|
```ruby
|
|
30
|
-
require
|
|
30
|
+
require "philiprehberger/json_path"
|
|
31
31
|
|
|
32
32
|
data = {
|
|
33
33
|
'store' => {
|
|
@@ -97,8 +97,8 @@ Philiprehberger::JsonPath.query(data, "$.store.books[?(@.title=='Go')].price")
|
|
|
97
97
|
|
|
98
98
|
```bash
|
|
99
99
|
bundle install
|
|
100
|
-
bundle exec rspec
|
|
101
|
-
bundle exec rubocop
|
|
100
|
+
bundle exec rspec
|
|
101
|
+
bundle exec rubocop
|
|
102
102
|
```
|
|
103
103
|
|
|
104
104
|
## License
|
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.5
|
|
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-25 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
|