rust_json_schema 0.1.2-x86_64-linux → 0.2.0-x86_64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +23 -9
- data/lib/rust_json_schema/3.0/rust_json_schema.so +0 -0
- data/lib/rust_json_schema/3.1/rust_json_schema.so +0 -0
- data/lib/rust_json_schema/3.2/rust_json_schema.so +0 -0
- data/lib/rust_json_schema/3.3/rust_json_schema.so +0 -0
- data/lib/rust_json_schema/version.rb +1 -1
- data/lib/rust_json_schema.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19d630369a3720cc411652a66ce8d048e7a137a856ea44705d1e40953d3dfd6a
|
4
|
+
data.tar.gz: dd2bd143cd71a1508605fa057085cb6d3f84d8e6ff2d71c381ae359b9f9dc78d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae152fbd471595efae6cd71b95205a35bd45d4de3e6f2dbac7804495ca8e8dbb3adac17a77b5ccd749f0f08da97b2c37991a343964e4aac43a276486858f9605
|
7
|
+
data.tar.gz: 92ec0910ceb4c6ed7166aa715cf793def1859182d0febd39b1bc0da95a1b08fcdcc38128716d01abf731efaa351fc4272a1d6f7d9d732954f58d84e7d389d2fb
|
data/README.md
CHANGED
@@ -4,13 +4,15 @@
|
|
4
4
|
|
5
5
|
`rust_json_schema` is a Ruby wrapper gem for Rust's [jsonschema-rs crate](https://github.com/Stranger6667/jsonschema-rs).
|
6
6
|
|
7
|
-
|
7
|
+
The minimum Ruby version required by this gem is 3.0, due to the runtime Rust libraries that make the extensions possible (and easy).
|
8
8
|
|
9
|
-
|
9
|
+
This gem ships with precompiled binaries for Linux and macOS. Check the available gems on [Rubygems](https://rubygems.org/gems/rust_json_schema). Precompiled binaries do not exist for non-standard rubies like JRuby or TruffleRuby, nor do they exist for Windows. I will review and accept PRs if you would like to work on adding these build targets.
|
10
|
+
|
11
|
+
[rusty_json_schema](https://github.com/driv3r/rusty_json_schema) is a direct source of inspiration. Now that [bundler has explicit support for rust-backed Ruby gems](https://bundler.io/blog/2023/01/31/rust-gem-skeleton.html) as of early 2023, the Rust library code is a lot simpler that it previously needed to be, largely thanks to [magnus crate](https://github.com/matsadler/magnus) and the [rb-sys gem](https://github.com/oxidize-rb/rb-sys/tree/main/gem), and by extension, the [oxidize-rb team](https://github.com/oxidize-rb).
|
10
12
|
|
11
|
-
|
13
|
+
## Warning
|
12
14
|
|
13
|
-
|
15
|
+
My experience with Rust is limited, but this gem does have tests, and it is deployed in production. Please confirm that the gem is working as expected before using it in any production-critical situation. If you are using this gem in a production environment, and have any comments or feedback, I would love to hear about it.
|
14
16
|
|
15
17
|
## Installation
|
16
18
|
|
@@ -25,7 +27,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
25
27
|
## Usage
|
26
28
|
|
27
29
|
```ruby
|
28
|
-
|
30
|
+
schema = <<~JSON
|
29
31
|
{
|
30
32
|
"properties": {
|
31
33
|
"foo": { "type": "string" },
|
@@ -36,6 +38,12 @@ validator = RustJSONSchema::Validator.new(<<~JSON)
|
|
36
38
|
}
|
37
39
|
JSON
|
38
40
|
|
41
|
+
validator = RustJSONSchema::Validator.new(
|
42
|
+
schema,
|
43
|
+
draft: :draft7,
|
44
|
+
with_meta_schemas: false
|
45
|
+
)
|
46
|
+
|
39
47
|
errors = validator.validate('{ "foo": 1, "bar": "wadus" }')
|
40
48
|
# => [
|
41
49
|
# 'path "/bar": "wadus" is not of type "number"',
|
@@ -44,15 +52,21 @@ errors = validator.validate('{ "foo": 1, "bar": "wadus" }')
|
|
44
52
|
# ]
|
45
53
|
```
|
46
54
|
|
55
|
+
### Options
|
56
|
+
|
57
|
+
- `:draft` - Select the JSON schema draft number to use. Valid options are `draft4`, `draft6`, `draft7`, `draft201909`, and `draft202012`. Supported drafts are entirely determined by the `jsonschema` crate. The default draft is also determined by the crate. If new versions of the crate support additional draft versions, a code change in this gem will be required. I'm open to PRs to solve this problem - I don't know enough Rust to tell if it's easily done. *Both `draft201909` and `draft202012` are reported to have "some keywords not implemented", so use them at your own risk.*
|
58
|
+
- `:with_meta_schemas` - See [docs.rs/jsonschema CompilationOptions with_meta_schemas](https://docs.rs/jsonschema/0.17.1/jsonschema/struct.CompilationOptions.html#method.with_meta_schemas). `false` by default.
|
59
|
+
|
60
|
+
Any additional options provided by the `jsonschema` crate are options I do not understand or may not make sense to implement in a wrapper library such as this.
|
61
|
+
|
62
|
+
`RustJSONSchema::Validator#options` is provided and will return a Hash containing configuration options from the underlying Rust library. While I make an effort for them to look similar, or identical, to the options passed into the `Validator` initializer, the initializer arguments and the returned Hash should not be considered one-to-one. It exists as a way to confirm the configuration of the underlying schema validator instance.
|
63
|
+
|
47
64
|
### Errors
|
48
65
|
|
49
66
|
- All errors are subclasses of `RustJSONSchema::Error`.
|
50
67
|
- Calling `RustJSONSchema::Validator#new`, `#validate` or `#valid?` with a string which is not valid JSON will raise `RustJSONSchema::JSONParseError`.
|
51
68
|
- Calling `RustJSONSchema::Validator#new` with an invalid schema will raise `RustJSONSchema::SchemaParseError`.
|
52
|
-
|
53
|
-
## TODO
|
54
|
-
|
55
|
-
- Support passing options as `jsonschema-rs` does
|
69
|
+
- Calling `RustJSONSchema::Validator#new` with an invalid draft version value will raise `RustJSONSchema::InvalidOptionsError`.
|
56
70
|
|
57
71
|
## Development
|
58
72
|
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/rust_json_schema.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rust_json_schema
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: x86_64-linux
|
6
6
|
authors:
|
7
7
|
- Taylor Thurlow
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler
|