json-ld-preloaded 3.1.6 → 3.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 +4 -4
- data/README.md +4 -4
- data/VERSION +1 -1
- data/lib/json/ld/preloaded/linkedart.rb +79 -85
- data/lib/json/ld/preloaded/lov.rb +17 -3
- data/lib/json/ld/preloaded/prefix.rb +74 -19
- data/spec/preloaded_spec.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 86e39c849295805b38de9abeec664465ab0434e213c6c0d9bd108d80fdf0e9c5
|
|
4
|
+
data.tar.gz: 6d09ad39a95da5c46956ba6260172a01e759d1a221265318e19ca975c7e6e545
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5f3a3c0096a572da5a977c0e61439c27d75922d15ab4ed903dbcf36cc6701cb00be2a438509dffbc9c9fc7ccc12ba0a9ce3c54ca46ba54c7f60f6422ff38f88
|
|
7
|
+
data.tar.gz: c2356c18d6d0d49c323bbb8ef78e51bb095358378486e30d139065cf315f56ffe81daec95c9e6bbf6b1cdcc75658e3730abced7fb3bfd64d29f11d7d33cc8ffe
|
data/README.md
CHANGED
|
@@ -12,8 +12,8 @@ This gem uses the preloading capabilities in `JSON::LD::Context` to create ruby
|
|
|
12
12
|
|
|
13
13
|
Contexts are taken from https://github.com/json-ld/json-ld.org/wiki/existing-contexts:
|
|
14
14
|
|
|
15
|
-
* [Linked Open Vocabularies (LOV)](
|
|
16
|
-
* http://lov.
|
|
15
|
+
* [Linked Open Vocabularies (LOV)](https://lov.linkeddata.es/dataset/lov/)
|
|
16
|
+
* http://lov.linkeddata.es/dataset/lov/context
|
|
17
17
|
* [Schema.org](http://schema.org)
|
|
18
18
|
* http://schema.org (needs content negotiation)
|
|
19
19
|
* [Hydra](http://www.hydra-cg.com/spec/latest/core/)
|
|
@@ -52,8 +52,8 @@ Contexts are taken from https://github.com/json-ld/json-ld.org/wiki/existing-con
|
|
|
52
52
|
* https://www.w3.org/ns/csvw
|
|
53
53
|
|
|
54
54
|
## Dependencies
|
|
55
|
-
* [Ruby](https://ruby-lang.org/) (>= 2.
|
|
56
|
-
* [JSON::LD](https://rubygems.org/gems/json-ld) (>= 3.
|
|
55
|
+
* [Ruby](https://ruby-lang.org/) (>= 2.6)
|
|
56
|
+
* [JSON::LD](https://rubygems.org/gems/json-ld) (>= 3.2)
|
|
57
57
|
|
|
58
58
|
## Mailing List
|
|
59
59
|
* <https://lists.w3.org/Archives/Public/public-rdf-ruby/>
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.2.0
|