hash-json-path 1.0.0 → 1.0.2

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: dc1b3a10130434df62083a9617bb19bb77762f826fbb2009bda855da44b55b78
4
- data.tar.gz: 6dedf5b04dcb23e06315a28044742c824ade710168ea924f70058e2a428b1123
3
+ metadata.gz: 3047615d11da1debef5b36bf0f43aab70d54d7b3d7a31e3f870625e644058d27
4
+ data.tar.gz: c645fb0e6ae2fd43cc070e3149353dd1b80961e6505cf257c4e9f3f6b0e0b3f6
5
5
  SHA512:
6
- metadata.gz: fd8780b9f0968f9ca20c4fe217991e17c9d92055bb2657acda7dc73221b22711f86b10398efbec8c26a9ca95cbcc4603d955e7026f3144778bf1a16e1a467acb
7
- data.tar.gz: 5bae1063e81def147f6f5fa82acf57c18d41a8960c8a539bc507d951e567d470589af1b35524ba2f5a72830a5b57e956b98129604b9464d9825ffeff116d04dd
6
+ metadata.gz: 434e6ab2b2b7238b5444647b70609ba1559e6e59ea463a236762a4caba01dc1d909d7b14f116f14ad3e65660b4ada276bb78fcdabf54f45527d4d28970e897de
7
+ data.tar.gz: d6c6bfc6e7723f864b27922557477cf1ecf1eb1800251d7ab949c235db54d2905c1d6d4386018956a6dd37aaaeadf93fb1521d7cb1a1e6ca79d94bf760e097e1
@@ -1,11 +1,11 @@
1
1
  class HashJsonPath
2
- SEPERATOR_REGEX = /[^\[|^\]]+/ # e.g. local_results[0][1] => ["local_results", "0", "1"]
2
+ SEPARATOR_REGEX = /[^\[|^\]|^\.]+/ # e.g. local_results[0][1] => ["local_results", "0", "1"]
3
3
 
4
4
  def self.on(hash)
5
5
  new(hash)
6
6
  end
7
7
 
8
- def initialize(hash, separator_regex = SEPERATOR_REGEX)
8
+ def initialize(hash, separator_regex = SEPARATOR_REGEX)
9
9
  @hash = hash
10
10
  @separator_regex = separator_regex
11
11
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hash-json-path
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Terry Tan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-09 00:00:00.000000000 Z
11
+ date: 2023-06-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: HashJsonPath is a simple gem to access hash and set hash value using
14
14
  json path.
@@ -18,7 +18,7 @@ executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
- - lib/hash_json_path.rb
21
+ - lib/hash-json-path.rb
22
22
  homepage: https://github.com/serpapi/hash-json-path
23
23
  licenses:
24
24
  - MIT