rest-json-validator 0.0.1 → 0.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 +4 -4
- metadata +12 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0755a8502d7a07702a07b80f2a1b26fc85c043d3
|
4
|
+
data.tar.gz: 202be06b3ed2c71d5e2730e79e1f604d002b2469
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: baf89dfe29628f50946eb37babf639a4cab4e972674a483f118b49f20840dd29394d3e500cf46baa7a84a0ad55e718ac2a21f0fa2f45613a91a7fa711dd25254
|
7
|
+
data.tar.gz: d385f09180f17d00fbcbe040463c17db810fe9dbb61fff7564b489d0164d681a4c913d81a2000bec7886476a2e9b7706fcdf645e2e87768d70bf20f41043cbdd
|
metadata
CHANGED
@@ -1,23 +1,26 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rest-json-validator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Åsmund Westberg, Aril Spetalen, Magnus de Laval, Dagfinn Olsen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-06-
|
11
|
+
date: 2017-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description: Define a specification of a json structure, as well as composing methods
|
14
|
+
to verify its content. Then use this tool to recursively run through the data, and
|
15
|
+
validate it matches your specification. We've used this extensively to verify json
|
16
|
+
API responses at NRK.
|
14
17
|
email: dagfinno@gmail.com
|
15
18
|
executables: []
|
16
19
|
extensions: []
|
17
20
|
extra_rdoc_files: []
|
18
21
|
files:
|
19
22
|
- lib/rest-json-validator.rb
|
20
|
-
homepage: http://
|
23
|
+
homepage: http://github.com/nrkno/rest-json-validator
|
21
24
|
licenses:
|
22
25
|
- MIT
|
23
26
|
metadata: {}
|
@@ -27,18 +30,19 @@ require_paths:
|
|
27
30
|
- lib
|
28
31
|
required_ruby_version: !ruby/object:Gem::Requirement
|
29
32
|
requirements:
|
30
|
-
- -
|
33
|
+
- - '>='
|
31
34
|
- !ruby/object:Gem::Version
|
32
35
|
version: '0'
|
33
36
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
34
37
|
requirements:
|
35
|
-
- -
|
38
|
+
- - '>='
|
36
39
|
- !ruby/object:Gem::Version
|
37
40
|
version: '0'
|
38
41
|
requirements: []
|
39
42
|
rubyforge_project:
|
40
|
-
rubygems_version: 2.
|
43
|
+
rubygems_version: 2.0.3
|
41
44
|
signing_key:
|
42
45
|
specification_version: 4
|
43
|
-
summary:
|
46
|
+
summary: Tool to test a json structure and data against a specification
|
44
47
|
test_files: []
|
48
|
+
has_rdoc:
|