jsonpathv2 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 42c5754087dca72b09158229ea91cb5041026c27
4
- data.tar.gz: c0d184648b89b424eb5e87a5d2ea4d034290ac2e
3
+ metadata.gz: c336b26ab3c6cecd5165c8df3207a270658e6e93
4
+ data.tar.gz: 8c79ea9bd67cc9b25d609a09c0189dcf322e908d
5
5
  SHA512:
6
- metadata.gz: 9fdb268247ff8e762fadad1875d9ce64f9c8884d72d7d2e1f4e35e06a5fa8fd0300b0ea1739931bfe0a4b675309db3675bc796692f457dba14adc51ed5bbac8e
7
- data.tar.gz: be83d73bfa5b14d43f331067c99f806967f5f007f0bba985142be06bbf7af37391027abfd72cca38f62a781efb6ed2fa139c7b2e7b545f480eaffae39e38ddc5
6
+ metadata.gz: 9008ffc5936fe1b4eb44d7467c5c3096e35cffe78ff5ccc1882ec28991c8fe29ae2bd028458c773fafe8d8c16821910d4a9eb9125da3e0bb5c467c2f53b84cf9
7
+ data.tar.gz: d0ba5259390fa7475f1266ced6d4219ca0f42d73f59cb677f95f5a9ea883c2858c98a15c6ef55c4cc449a7bed34cf43c50c467d5a9f03061a9dbbf8ed88f6407
data/lib/jsonpath.rb ADDED
@@ -0,0 +1 @@
1
+ require 'jsonpathv2'
@@ -1,3 +1,3 @@
1
1
  class JsonPath
2
- VERSION = '0.0.2'.freeze
2
+ VERSION = '0.0.3'.freeze
3
3
  end
data/lib/jsonpathv2.rb CHANGED
@@ -4,6 +4,8 @@ require 'jsonpathv2/proxy'
4
4
  require 'jsonpathv2/enumerable'
5
5
  require 'jsonpathv2/version'
6
6
 
7
+ # JsonPath: initializes the class with a given JsonPath and parses that path
8
+ # into a token array.
7
9
  class JsonPath
8
10
  PATH_ALL = '$..*'.freeze
9
11
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jsonpathv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gergely Brautigam
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-21 00:00:00.000000000 Z
11
+ date: 2016-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json
@@ -110,6 +110,7 @@ files:
110
110
  - Rakefile
111
111
  - bin/jsonpathv2
112
112
  - jsonpathv2.gemspec
113
+ - lib/jsonpath.rb
113
114
  - lib/jsonpathv2.rb
114
115
  - lib/jsonpathv2/enumerable.rb
115
116
  - lib/jsonpathv2/proxy.rb