json-path-builder 0.1.1 → 0.1.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
  SHA256:
3
- metadata.gz: b33e4496f997d0f1c8346c081daeb8719b0acb59239f072d729cafddd944d3cc
4
- data.tar.gz: a22fc025b26f31aabdaae954e3637d48c87c98e564b129a41e214f4f3c204681
3
+ metadata.gz: 0d39efda53cb037f7f098847a95b39db164ac77e0ed640e5addf7e972642c5ad
4
+ data.tar.gz: c73bf783f5baee65570dd6f85cbf6448e8f132815e82f92d6dfd9ef9bdd18dc8
5
5
  SHA512:
6
- metadata.gz: 67359a1537323837e1e868f3b848ec3f378e7e6d414997bc6b35a139c5728469bdd2b47eb39d2fa83214698c7a3349765398ed0f26a93e8dd24e5e5a6f207da5
7
- data.tar.gz: b71066c9c3376bb1e5b6ef03a319f04e790249d7e18a4343619f7ace25f6521b9f4a3c017b828a8fe229bfe91946d624e3965e40d5844aa51d6b49c60313e725
6
+ metadata.gz: b5eae88264b15eee7e8564f07a26227e4bb67b5f4efcc57d4e3a5bb755413f25e55f8bbdfbe644b77fe66c6e5d398ba632ba6b0622524d9ddc370e5817a45137
7
+ data.tar.gz: 2f1e04d506357f82dec97834616326882f529ff93006ff6413a224b96a154fbcc4f809271a5b33cabeab1358b89b91a6114f85928d76bd8b523ac57763e2bfa7
@@ -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.3"
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.3
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