jsonschema 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +94 -0
- data/Rakefile +94 -0
- data/lib/jsonschema.rb +432 -0
- data/test/jsonschema_test.rb +802 -0
- metadata +63 -0
metadata
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jsonschema
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Constellation
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-10-09 00:00:00 +09:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: json schema library ruby porting from http://code.google.com/p/jsonschema/
|
17
|
+
email: utatane.tea@gmail.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README.rdoc
|
24
|
+
files:
|
25
|
+
- README.rdoc
|
26
|
+
- Rakefile
|
27
|
+
- test/jsonschema_test.rb
|
28
|
+
- lib/jsonschema.rb
|
29
|
+
has_rdoc: true
|
30
|
+
homepage: http://github.com/Constellation/ruby-jsonchema/tree/master
|
31
|
+
licenses: []
|
32
|
+
|
33
|
+
post_install_message:
|
34
|
+
rdoc_options:
|
35
|
+
- --main
|
36
|
+
- README.rdoc
|
37
|
+
- --charset
|
38
|
+
- utf-8
|
39
|
+
- --line-numbers
|
40
|
+
- --inline-source
|
41
|
+
require_paths:
|
42
|
+
- lib
|
43
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: "0"
|
48
|
+
version:
|
49
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: "0"
|
54
|
+
version:
|
55
|
+
requirements: []
|
56
|
+
|
57
|
+
rubyforge_project: jsonschema
|
58
|
+
rubygems_version: 1.3.5
|
59
|
+
signing_key:
|
60
|
+
specification_version: 3
|
61
|
+
summary: json schema library ruby porting from http://code.google.com/p/jsonschema/
|
62
|
+
test_files:
|
63
|
+
- test/jsonschema_test.rb
|