Skip to content

Commit 690135f

Browse files
committedAug 4, 2022
Finish 3.2.2
2 parents 8ee7317 + 6b73ffe commit 690135f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+168
-109
lines changed
 

‎README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ This gem also implements an optimized streaming writer used for generating JSON-
3232
* Each statement written as a separate node in expanded/flattened form.
3333
* `RDF List`s are written as separate nodes using `rdf:first` and `rdf:rest` properties.
3434

35-
The order of triples retrieved from the `RDF::Enumerable` dataset determines the way that JSON-LD node objects are written; for best results, statements should be ordered by _graph name_, _subect_, _predicate_ and _object_.
35+
The order of triples retrieved from the `RDF::Enumerable` dataset determines the way that JSON-LD node objects are written; for best results, statements should be ordered by _graph name_, _subject_, _predicate_ and _object_.
3636

3737
### MultiJson parser
38-
The [MultiJson](https://rubygems.org/gems/multi_json) gem is used for parsing JSON; this defaults to the native JSON parser, but will use a more performant parser if one is available. A specific parser can be specified by adding the `:adapter` option to any API call. See [MultiJson](https://rubygems.org/gems/multi_json) for more information.
38+
The [MultiJson](https://rubygems.org/gems/multi_json) gem is used for parsing and serializing JSON; this defaults to the native JSON parser/serializer, but will use a more performant parser if one is available. A specific parser can be specified by adding the `:adapter` option to any API call. Additionally, a custom serialilzer may be specified by passing the `:serializer` option to {JSON::LD::Writer} or methods of {JSON::LD::API}. See [MultiJson](https://rubygems.org/gems/multi_json) for more information.
3939

4040
### JSON-LD-star (RDFStar)
4141

@@ -624,8 +624,7 @@ To get a local working copy of the development repository, do:
624624
which you will be asked to agree to on the first commit to a repo within the organization.
625625
Note that the agreement applies to all repos in the [Ruby RDF](https://github.com/ruby-rdf/) organization.
626626

627-
License
628-
-------
627+
## License
629628

630629
This is free and unencumbered public domain software. For more information,
631630
see <https://unlicense.org/> or the accompanying {file:UNLICENSE} file.
@@ -641,7 +640,7 @@ see <https://unlicense.org/> or the accompanying {file:UNLICENSE} file.
641640
[Backports]: https://rubygems.org/gems/backports
642641
[JSON-LD]: https://www.w3.org/TR/json-ld11/ "JSON-LD 1.1"
643642
[JSON-LD API]: https://www.w3.org/TR/json-ld11-api/ "JSON-LD 1.1 Processing Algorithms and API"
644-
[JSON-LD Framing]: https://www.w3.org/TR/json-ld11-framing/ "JSON-LD Framing 1.1"
643+
[JSON-LD Framing]: https://www.w3.org/TR/json-ld11-framing/ "JSON-LD 1.1 Framing"
645644
[Promises]: https://dom.spec.whatwg.org/#promises
646645
[jsonlint]: https://rubygems.org/gems/jsonlint
647646
[Sinatra]: https://www.sinatrarb.com/

‎VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.1
1+
3.2.2

0 commit comments

Comments
 (0)
Please sign in to comment.