json-path-builder 0.1.1 → 0.1.2

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
  SHA256:
3
- metadata.gz: b33e4496f997d0f1c8346c081daeb8719b0acb59239f072d729cafddd944d3cc
4
- data.tar.gz: a22fc025b26f31aabdaae954e3637d48c87c98e564b129a41e214f4f3c204681
3
+ metadata.gz: d1c880bbfcbc227c4a7296c129f679e7fbf0a966eafce00f1f6d63436bd41079
4
+ data.tar.gz: 377c9adc964c1ccd383230678a91204b6652ff48e9c90ea9c57bce76a9f78f60
5
5
  SHA512:
6
- metadata.gz: 67359a1537323837e1e868f3b848ec3f378e7e6d414997bc6b35a139c5728469bdd2b47eb39d2fa83214698c7a3349765398ed0f26a93e8dd24e5e5a6f207da5
7
- data.tar.gz: b71066c9c3376bb1e5b6ef03a319f04e790249d7e18a4343619f7ace25f6521b9f4a3c017b828a8fe229bfe91946d624e3965e40d5844aa51d6b49c60313e725
6
+ metadata.gz: 84e2155f5ce36ed4386a1bb5a52fed0db103b6d6e047b459272e56bb09e084d5cebbb7aa3e224d2e9452a3149df92bef85c7d1aa302843ad4535b11400b00071
7
+ data.tar.gz: cece139c00605737eb783e5d9652a729f3038c61d5390f0360db3487fe0691699cca0255daf7ab20ab0ce1952bcb5201821aa3fc9cd9dd325bd9cce2a6348e5b
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'English'
4
- require File.expand_path('lib/json-path/version', __dir__)
4
+ require File.expand_path('lib/json-path-builder/version', __dir__)
5
5
 
6
6
  Gem::Specification.new do |gem|
7
7
  gem.authors = ["Desmond O'Leary"]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JsonPathBuilder
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rordash'
4
+
5
+ require 'json-path-builder/version'
6
+ require 'json-path-builder/default_data_wrapper'
7
+ require 'json-path-builder/path_context'
8
+ require 'json-path-builder/path_context_collection'
9
+ require 'json-path-builder/builder'
10
+
11
+ module JsonPath; end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json-path-builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Desmond O'Leary
@@ -117,12 +117,12 @@ files:
117
117
  - bin/setup
118
118
  - dev/setup.rb
119
119
  - json_path_builder.gemspec
120
- - lib/json-path/builder.rb
121
- - lib/json-path/default_data_wrapper.rb
122
- - lib/json-path/path_context.rb
123
- - lib/json-path/path_context_collection.rb
124
- - lib/json-path/version.rb
125
- - lib/json_path.rb
120
+ - lib/json-path-builder/builder.rb
121
+ - lib/json-path-builder/default_data_wrapper.rb
122
+ - lib/json-path-builder/path_context.rb
123
+ - lib/json-path-builder/path_context_collection.rb
124
+ - lib/json-path-builder/version.rb
125
+ - lib/json_path_builder.rb
126
126
  - sig/json_path_builder.rbs
127
127
  - spec/coverage_helper.rb
128
128
  - spec/json-path/builder_spec.rb
data/lib/json_path.rb DELETED
@@ -1,11 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'rordash'
4
-
5
- require 'json-path/version'
6
- require 'json-path/default_data_wrapper'
7
- require 'json-path/path_context'
8
- require 'json-path/path_context_collection'
9
- require 'json-path/builder'
10
-
11
- module JsonPath; end
File without changes