linkeddata 2.2.0 → 2.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -1
- data/VERSION +1 -1
- data/lib/linkeddata.rb +3 -0
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 418e55c71f4a0a36a9c0b1297ff0c73f48928cc0
|
4
|
+
data.tar.gz: 4f611bafe99e2c968b1411e8a6a6751538af542b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4942ab951919e81b27d490cb5d558b6ba75a354e877961c5b35b8c79511f246a4d641a62935a464687703dd71459b89035161d46a49b58740695f00a85eb1f30
|
7
|
+
data.tar.gz: 4214d51bd41876284c766c39309fb0678fea5f8578e6ffe42f06482c8a6f32d2b3c7d2eb7c6cc18ca302ac3dfbce5db36327cebb804190ea8223e983762a4149
|
data/README.md
CHANGED
@@ -15,6 +15,7 @@ consuming [Linked Data][] with Ruby as quick & easy as possible.
|
|
15
15
|
* Includes [RDF/XML][] support using the [RDF::RDFXML][] gem.
|
16
16
|
* Includes [Microdata][] support using the [RDF::Microdata][] gem.
|
17
17
|
* Includes [Notation3][] support using the [RDF::N3][] gem.
|
18
|
+
* Includes [RDF Dataset Normalization][Normalization] support using the [RDF::Normalize][] gem.
|
18
19
|
* Includes [RDFS][], [schema.org][] and limited [OWL][] reasoning using the [RDF::Reasoner][] gem.
|
19
20
|
* Includes [RDFa][] support using the [RDF::RDFa][] gem.
|
20
21
|
* Includes [RDF/JSON][] support using the [RDF::JSON][] gem.
|
@@ -81,6 +82,7 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
|
|
81
82
|
[RDF::JSON]: http://ruby-rdf.github.com/rdf-json
|
82
83
|
[RDF::Microdata]: http://ruby-rdf.github.com/rdf-microdata
|
83
84
|
[RDF::N3]: http://ruby-rdf.github.com/rdf-n3
|
85
|
+
[RDF::Normalize]: http://ruby-rdf.github.com/rdf-normalize
|
84
86
|
[RDF::Raptor]: http://ruby-rdf.github.com/rdf-raptor
|
85
87
|
[RDF::RDFa]: http://ruby-rdf.github.com/rdf-rdfa
|
86
88
|
[RDF::RDFXML]: http://ruby-rdf.github.com/rdf-rdfxml
|
@@ -94,8 +96,9 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
|
|
94
96
|
[N-Quads]: http://www.w3.org/TR/n-quads/ "N-Quads"
|
95
97
|
[N-Triples]: http://www.w3.org/TR/n-triples/ "N-Triples"
|
96
98
|
[Notation3]: http://en.wikipedia.org/wiki/Notation3
|
99
|
+
[Normalization]: https://json-ld.github.io/normalization/spec/ "RDF Dataset Normalization"
|
97
100
|
[Nokogiri]: http://rubygems.org/gems/nokogiri
|
98
|
-
[JSON-LD]: http://www.w3.org/TR/json-ld/ "JSON-LD 1.
|
101
|
+
[JSON-LD]: http://www.w3.org/TR/json-ld/ "JSON-LD 1.1"
|
99
102
|
[JSON::LD]: http://gkellogg.github.com/json-ld
|
100
103
|
[LD Patch]: http://www.w3.org/TR/ldpatch/ "LD Patch"
|
101
104
|
[LD::Patch]: http://gkellogg.github.com/ld-patch
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.2.
|
1
|
+
2.2.2
|
data/lib/linkeddata.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: linkeddata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arto Bendiken
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2017-
|
14
|
+
date: 2017-06-22 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: rdf
|
@@ -97,6 +97,20 @@ dependencies:
|
|
97
97
|
- - "~>"
|
98
98
|
- !ruby/object:Gem::Version
|
99
99
|
version: '2.1'
|
100
|
+
- !ruby/object:Gem::Dependency
|
101
|
+
name: rdf-normalize
|
102
|
+
requirement: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - "~>"
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '0.3'
|
107
|
+
type: :runtime
|
108
|
+
prerelease: false
|
109
|
+
version_requirements: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - "~>"
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '0.3'
|
100
114
|
- !ruby/object:Gem::Dependency
|
101
115
|
name: rdf-rdfa
|
102
116
|
requirement: !ruby/object:Gem::Requirement
|
@@ -396,7 +410,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
396
410
|
version: '0'
|
397
411
|
requirements: []
|
398
412
|
rubyforge_project: datagraph
|
399
|
-
rubygems_version: 2.6.
|
413
|
+
rubygems_version: 2.6.11
|
400
414
|
signing_key:
|
401
415
|
specification_version: 4
|
402
416
|
summary: Linked Data for Ruby.
|