rust_json_schema 0.1.2-x86_64-linux-musl → 0.3.0-x86_64-linux-musl

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
  SHA256:
3
- metadata.gz: c110023e8e147bd03dc700e4da4b2a6f4c566d95fe89e2ab80a62dc43249e623
4
- data.tar.gz: 54c1c74b9c3768f090e35d6799a5728d2b5b07dfd18ee41a1b606d3a72a2ed4f
3
+ metadata.gz: b0c4d809f301126f24cd4d98fb1775e68639014f44b14cae7467116f64d863dd
4
+ data.tar.gz: 7724cf3ac7230911273b9e3e513928556a65e1eb94090d976b13bd8294c93de0
5
5
  SHA512:
6
- metadata.gz: cc3f0bd411ec8b0c951c1a314f3439d9fe92b515d50f2aa1a49ca056eec8971231eef47693d5a8bcb1dece8d929bbcef2cbdc0b8c85b5b9304996f5c35a6ad1d
7
- data.tar.gz: 7f04a0325223e342e8fe6dcbe208e642f009559c8f1d14261cc7df21f8ae7b86bd0e54e5171e314687d452caf782671d6280d8e6bcbd6d19d04f6a0abd5d598a
6
+ metadata.gz: f391b4f8b527e5938a95dd028dfcdd1332755b4485f6689fddc1e46367360822962963ea8bf30942d509a755a7a326c1930179c18d3a7c8d915e15144f03a9ae
7
+ data.tar.gz: d19c6ca3e06531c6a35b27e6dea6427455bfae18e0776522312cf6ac4357ba6e641842ecfe3ffae1d6d4d5a1ce8444b7a43c29a44e1c89171ea63d81e5afc276
data/README.md CHANGED
@@ -4,13 +4,18 @@
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
- This gem ships with precompiled binaries for Linux and macOS. Check the available gems on [Rubygems](https://rubygems.org/gems/rust_json_schema).
7
+ > [!IMPORTANT]
8
+ > This gem is built with `json_schema` crate version `0.19.1`, and therefore does not support any features for any potential future versions of the crate. I will review and accept PRs if you would like to work on adding support for newer versions of the crate. I generally am trying to keep things up to date but I am not cutting new releases for each new patch version of the crate.
8
9
 
9
- ## Warning
10
+ The minimum Ruby version required by this gem is 3.0, due to the runtime Rust libraries that make the extensions possible (and easy).
11
+
12
+ 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.
13
+
14
+ [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
15
 
11
- I do not have any significant Rust programming experience, but this gem satisifies a need for a performant JSON Schema validation tool in Ruby land. While I intend to use this gem in a production environment, consider this code and library entirely experimental, at least until a 1.0 release, if it ever comes to that.
16
+ ## Warning
12
17
 
13
- [rusty_json_schema](https://github.com/driv3r/rusty_json_schema) is a direct source of inspiration (and in some cases, literal copy and paste, like some fixtures/specs). 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).
18
+ 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
19
 
15
20
  ## Installation
16
21
 
@@ -25,7 +30,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
25
30
  ## Usage
26
31
 
27
32
  ```ruby
28
- validator = RustJSONSchema::Validator.new(<<~JSON)
33
+ schema = <<~JSON
29
34
  {
30
35
  "properties": {
31
36
  "foo": { "type": "string" },
@@ -36,6 +41,8 @@ validator = RustJSONSchema::Validator.new(<<~JSON)
36
41
  }
37
42
  JSON
38
43
 
44
+ validator = RustJSONSchema::Validator.new(schema, draft: :draft7)
45
+
39
46
  errors = validator.validate('{ "foo": 1, "bar": "wadus" }')
40
47
  # => [
41
48
  # 'path "/bar": "wadus" is not of type "number"',
@@ -44,19 +51,28 @@ errors = validator.validate('{ "foo": 1, "bar": "wadus" }')
44
51
  # ]
45
52
  ```
46
53
 
54
+ ### Options
55
+
56
+ - `: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._
57
+
58
+ 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.
59
+
60
+ `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.
61
+
47
62
  ### Errors
48
63
 
49
64
  - All errors are subclasses of `RustJSONSchema::Error`.
50
65
  - Calling `RustJSONSchema::Validator#new`, `#validate` or `#valid?` with a string which is not valid JSON will raise `RustJSONSchema::JSONParseError`.
51
66
  - Calling `RustJSONSchema::Validator#new` with an invalid schema will raise `RustJSONSchema::SchemaParseError`.
67
+ - Calling `RustJSONSchema::Validator#new` with an invalid draft version value will raise `RustJSONSchema::InvalidOptionsError`.
52
68
 
53
- ## TODO
69
+ ## Development
54
70
 
55
- - Support passing options as `jsonschema-rs` does
71
+ The rust extension is located at `ext/rust_json_schema`, and can be compiled using the `rake-compiler` tasks, usually `bin/rake compile`. Don't attempt to `cargo build` the extension separately, that typically doesn't work. View other rake tasks with `bin/rake --tasks`.
56
72
 
57
- ## Development
73
+ You can run the tests with `bin/rspec`, but ensure any changes to the rust extension are compiled first.
58
74
 
59
- TODO
75
+ To release a new version, update the version number in `version.rb`, tag the new commit with the version number, and push the tag to GitHub. The gem will be built and pushed to Rubygems automatically. This will also automatically build the platform-specific binaries and attach them to the release.
60
76
 
61
77
  ## Contributing
62
78
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RustJSONSchema
4
- VERSION = "0.1.2"
4
+ VERSION = "0.3.0"
5
5
  end
@@ -8,6 +8,8 @@ module RustJSONSchema
8
8
  class JSONParseError < Error; end
9
9
 
10
10
  class SchemaParseError < Error; end
11
+
12
+ class InvalidOptionsError < Error; end
11
13
  end
12
14
 
13
15
  # Tries to require the extension for the given Ruby version first
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.1.2
4
+ version: 0.3.0
5
5
  platform: x86_64-linux-musl
6
6
  authors:
7
7
  - Taylor Thurlow
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-12 00:00:00.000000000 Z
11
+ date: 2024-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
@@ -57,13 +57,13 @@ files:
57
57
  - lib/rust_json_schema/3.3/rust_json_schema.so
58
58
  - lib/rust_json_schema/version.rb
59
59
  - sig/rust_json_schema.rbs
60
- homepage: https://github.com/taylorthurlow/rust_json_schema
60
+ homepage: https://github.com/taylorthurlow/rust_json_schema-rb
61
61
  licenses:
62
62
  - MIT
63
63
  metadata:
64
- homepage_uri: https://github.com/taylorthurlow/rust_json_schema
65
- source_code_uri: https://github.com/taylorthurlow/rust_json_schema
66
- changelog_uri: https://github.com/taylorthurlow/rust_json_schema/releases
64
+ homepage_uri: https://github.com/taylorthurlow/rust_json_schema-rb
65
+ source_code_uri: https://github.com/taylorthurlow/rust_json_schema-rb
66
+ changelog_uri: https://github.com/taylorthurlow/rust_json_schema-rb/releases
67
67
  post_install_message:
68
68
  rdoc_options: []
69
69
  require_paths:
@@ -81,6 +81,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  - - ">="
82
82
  - !ruby/object:Gem::Version
83
83
  version: 3.3.11
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: 3.3.22
84
87
  requirements: []
85
88
  rubygems_version: 3.4.4
86
89
  signing_key: