easy_json_matcher 0.5.0 → 0.5.1

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: b4ae72ea8cf0f22e7214a77bef9d439db03eccff
4
- data.tar.gz: ca161753385c81aa57e6a43418664d807b1425ae
3
+ metadata.gz: c04df148f5886b995da635f48a8858bd86848062
4
+ data.tar.gz: 98a42dcf046f111e3760d96b9fe0f57191d548f1
5
5
  SHA512:
6
- metadata.gz: 73ba46ee4cb3a9333e3b5ee56f2d18dced83580c2bd90fc95cbe77d18afb89e443aa141f5eb22d5216e1cb399f2fffbbff402ffb8c01d7f412986b7de02f953c
7
- data.tar.gz: 7e7c1f2f0fa7abcad1c6a20a27aa87119b8c1997566e6b74f9b2eec3fedf2f59ee6523c77b4747174d919ba963a08d4a4e64a8ce9a311d2287669884e3d6076f
6
+ metadata.gz: 15a328dcaf5aa2e9442ad78118a47cd7317384d07e0bb804797366da79dac219ca070ce7f674dd1401e5722874206705b52a9280fb8ebba85085b09f901106e4
7
+ data.tar.gz: 2ffa72b723e9b7db78dfb945b6468888f7028a0af56dd3aa3289a8d7efb055617005cc9368158b90ea2c86c4502fbc229c6d1e862dac543ca9596e6f0765cf8a
@@ -9,4 +9,7 @@ module EasyJSONMatcher
9
9
  TYPES = [:number, :object, :value, :string, :boolean, :date, :array]
10
10
 
11
11
  IMPORT = Dry::AutoInject(Container)
12
+
12
13
  end
14
+
15
+ EJM = EasyJSONMatcher
@@ -1,3 +1,3 @@
1
1
  module EasyJSONMatcher
2
- VERSION = "0.5.0".freeze
2
+ VERSION = "0.5.1".freeze
3
3
  end
@@ -10,7 +10,6 @@ module EasyJSONMatcher
10
10
  has_attribute(key: "name", opts: [ :string, :required ])
11
11
  }
12
12
  sc.register(as: @name)
13
- byebug
14
13
  end
15
14
 
16
15
  test "As a user I want to be able to register a Schema so I can reuse it later" do
@@ -4,6 +4,7 @@ module EasyJSONMatcher
4
4
  describe Printer do
5
5
 
6
6
  it "should properly print a Schema" do
7
+ skip "This test is currently checked using by printing to the console"
7
8
  schema = SchemaGenerator.new {
8
9
  string key: "val"
9
10
  contains_node key: "node" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_json_matcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - WJD Hamilton
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-14 00:00:00.000000000 Z
11
+ date: 2017-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-auto_inject