Skip to content

Commit 9a2dd27

Browse files
committed
Finish 3.1.4
2 parents fee4070 + b87a51f commit 9a2dd27

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ consuming [Linked Data][] with Ruby as quick & easy as possible.
2020
* Includes [RDFS][], [schema.org][] and limited [OWL][] reasoning using the [RDF::Reasoner][] gem.
2121
* Includes [RDFa][] support using the [RDF::RDFa][] gem.
2222
* Includes [RDF/JSON][] support using the [RDF::JSON][] gem.
23+
* Includes [SHACL][] support using the [SHACL][] gem.
24+
* Includes [ShEx][] support using the [ShEx][] gem.
2325
* Includes [TriG][] support using the [RDF::TriG][] gem.
2426
* Includes [TriX][] support using the [RDF::TriX][] gem.
2527
* Includes [Turtle][] support using the [RDF::Turtle][] gem.
@@ -64,6 +66,7 @@ Note, this distribution requires [Nokogiri][] and [Nokogumbo][], which makes it
6466
* [JSON::LD][] ('~> 3.1')
6567
* [JSON::LD::Preloaded][] ('~> 3.1')
6668
* [LD::Patch][] ('~> 3.1')
69+
* [SHACL][SHACL gem] ('~> 0.1')
6770
* [ShEx][ShEx gem] ('~> 0.6')
6871
* [SPARQL][SPARQL gem] ('~> 3.1')
6972
* [SPARQL::Client][] ('~> 3.1')
@@ -124,6 +127,7 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
124127
[JSON::LD]: http://www.rubydoc.info/github/ruby-rdf/json-ld
125128
[JSON::LD::Preloaded]: http://www.rubydoc.info/github/ruby-rdf/json-ld-preloaded
126129
[LD::Patch]: http://www.rubydoc.info/github/ruby-rdf/ld-patch
130+
[SHACL gem]: http://www.rubydoc.info/github/ruby-rdf/shacl
127131
[ShEx gem]: http://www.rubydoc.info/github/ruby-rdf/shex
128132
[SPARQL gem]: http://www.rubydoc.info/github/ruby-rdf/sparql
129133
[SPARQL::Client]: http://www.rubydoc.info/github/ruby-rdf/sparql-client
@@ -146,6 +150,7 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
146150
[RDFa]: http://www.w3.org/TR/rdfa-core/
147151
[RDFS]: http://www.w3.org/TR/rdf11-mt/
148152
[schema.org]: http://schema.org/
153+
[SHACL]: https://www.w3.org/TR/shacl/
149154
[ShEx]: http://shex.io/shex-semantics/
150155
[SPARQL]: http://www.w3.org/TR/sparql11-overview/
151156
[TriG]: http://www.w3.org/TR/trig/

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.3
1+
3.1.4

lib/linkeddata.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ module LinkedData
5555
# @see https://rubygems.org/gems/rdf-xsd
5656
require 'rdf/xsd'
5757

58+
# @see https://rubygems.org/gems/shacl
59+
require 'shacl'
60+
5861
# @see https://rubygems.org/gems/shex
5962
require 'shex'
6063

linkeddata.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Gem::Specification.new do |gem|
4242
gem.add_runtime_dependency 'json-ld', '~> 3.1', '>= 3.1.7'
4343
gem.add_runtime_dependency 'json-ld-preloaded', '~> 3.1', '>= 3.1.4'
4444
gem.add_runtime_dependency 'ld-patch', '~> 3.1', '>= 3.1.2'
45+
gem.add_runtime_dependency 'shacl', '~> 0.1', '>= 0.1.0'
4546
gem.add_runtime_dependency 'shex', '~> 0.6', '>= 0.6.1'
4647
gem.add_runtime_dependency 'sparql', '~> 3.1', '>= 3.1.4'
4748
gem.add_runtime_dependency 'sparql-client', '~> 3.1', '>= 3.1.1'

0 commit comments

Comments
 (0)