philiprehberger-json_path 0.1.2 → 0.1.4

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: c42abb04f3c099c0b3b1a441709f5a9a7c0007794940af3a61ae636492fc31a3
4
- data.tar.gz: cb0e5c6a8bf26607eb2effc49e0bd6289d16f54e1fae32856438c57d4f3e1375
3
+ metadata.gz: 4b9e1be4a9cfb16ac54d2a28fdaa7c1ce1ebed55a837702e080dfe29e9784e80
4
+ data.tar.gz: b637fe9b40a40387c75eab49e3fbc1ffa727eee812952bbf98dfb9b63293c201
5
5
  SHA512:
6
- metadata.gz: b37800fed419f8848340cd19ff4f0143b40712a94930894003dd362c050c41568359254221e2fe62a80ff17d1e1deca4831aa1120afbfa32ed58fb3bddaee6cb
7
- data.tar.gz: 794e77bdcdb60029649d8a5b12a362b902ca406eaf4bf97b3d48fd5b1c4937e064b3a5929adb0a62a5f25bde9dcb1bfb3fb61adcd1692c1cf92eab235b06a001
6
+ metadata.gz: 3b4b51c646ec0d5467947415374263e6c0ecd0e77f79503d926abe92383207eefabb6e5c1e0590fcaa00fce42ab05046d4ad1c1b226d4e7b9756ceb37b7508f8
7
+ data.tar.gz: 4ac44c61ec5a661a46c84abe1bd55eaf294a6dbfedb844d7471902d419d251e23f1628fc8c3b9e406d70a0750e9267d7c825dc2d7fb1c0731ea352a40205f14e
data/CHANGELOG.md CHANGED
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.4] - 2026-03-24
11
+
12
+ ### Fixed
13
+ - Fix Installation section quote style to double quotes
14
+ - Remove inline comments from Development section to match template
15
+
16
+ ## [0.1.3] - 2026-03-23
17
+
18
+ ### Fixed
19
+ - Standardize README description to match template guide
20
+ - Update gemspec summary to match README description
21
+
10
22
  ## [0.1.2] - 2026-03-22
11
23
 
12
24
  ### Changed
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-json_path.svg)](https://rubygems.org/gems/philiprehberger-json_path)
5
5
  [![License](https://img.shields.io/github/license/philiprehberger/rb-json-path)](LICENSE)
6
6
 
7
- JSONPath expression evaluator for querying nested data structures. Supports dot notation, array indexing, wildcards, slices, and filter expressions.
7
+ JSONPath expression evaluator with dot notation, wildcards, slices, and filters
8
8
 
9
9
  ## Requirements
10
10
 
@@ -15,7 +15,7 @@ JSONPath expression evaluator for querying nested data structures. Supports dot
15
15
  Add to your Gemfile:
16
16
 
17
17
  ```ruby
18
- gem 'philiprehberger-json_path'
18
+ gem "philiprehberger-json_path"
19
19
  ```
20
20
 
21
21
  Or install directly:
@@ -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 # Run tests
101
- bundle exec rubocop # Check code style
100
+ bundle exec rspec
101
+ bundle exec rubocop
102
102
  ```
103
103
 
104
104
  ## License
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module JsonPath
5
- VERSION = '0.1.2'
5
+ VERSION = '0.1.4'
6
6
  end
7
7
  end
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.2
4
+ version: 0.1.4
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-23 00:00:00.000000000 Z
11
+ date: 2026-03-24 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 for querying nested data structures
54
+ summary: JSONPath expression evaluator with dot notation, wildcards, slices, and filters
55
55
  test_files: []