json-schema 1.1.1 → 1.2.0
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 +15 -0
- data/README.textile +30 -18
- data/lib/json-schema/attributes/properties.rb +14 -2
- data/lib/json-schema/validator.rb +15 -13
- data/test/test_jsonschema_draft3.rb +285 -238
- metadata +5 -7
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: json-schema
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
5
|
-
prerelease:
|
4
|
+
version: 1.2.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Kenny Hoxworth
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-01-15 00:00:00.000000000 Z
|
13
12
|
dependencies: []
|
14
13
|
description:
|
15
14
|
email: hoxworth@gmail.com
|
@@ -76,27 +75,26 @@ files:
|
|
76
75
|
- test/schemas/inner.schema.json
|
77
76
|
homepage: http://github.com/hoxworth/json-schema/tree/master
|
78
77
|
licenses: []
|
78
|
+
metadata: {}
|
79
79
|
post_install_message:
|
80
80
|
rdoc_options: []
|
81
81
|
require_paths:
|
82
82
|
- lib
|
83
83
|
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
-
none: false
|
85
84
|
requirements:
|
86
85
|
- - ! '>='
|
87
86
|
- !ruby/object:Gem::Version
|
88
87
|
version: '0'
|
89
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
-
none: false
|
91
89
|
requirements:
|
92
90
|
- - ! '>='
|
93
91
|
- !ruby/object:Gem::Version
|
94
92
|
version: '0'
|
95
93
|
requirements: []
|
96
94
|
rubyforge_project:
|
97
|
-
rubygems_version:
|
95
|
+
rubygems_version: 2.0.7
|
98
96
|
signing_key:
|
99
|
-
specification_version:
|
97
|
+
specification_version: 4
|
100
98
|
summary: Ruby JSON Schema Validator
|
101
99
|
test_files:
|
102
100
|
- test/test_extended_schema.rb
|