Skip to content

Commit

Permalink
Finish 3.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Jan 4, 2021
2 parents fee4070 + b87a51f commit 9a2dd27
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ consuming [Linked Data][] with Ruby as quick & easy as possible.
* Includes [RDFS][], [schema.org][] and limited [OWL][] reasoning using the [RDF::Reasoner][] gem.
* Includes [RDFa][] support using the [RDF::RDFa][] gem.
* Includes [RDF/JSON][] support using the [RDF::JSON][] gem.
* Includes [SHACL][] support using the [SHACL][] gem.
* Includes [ShEx][] support using the [ShEx][] gem.
* Includes [TriG][] support using the [RDF::TriG][] gem.
* Includes [TriX][] support using the [RDF::TriX][] gem.
* Includes [Turtle][] support using the [RDF::Turtle][] gem.
Expand Down Expand Up @@ -64,6 +66,7 @@ Note, this distribution requires [Nokogiri][] and [Nokogumbo][], which makes it
* [JSON::LD][] ('~> 3.1')
* [JSON::LD::Preloaded][] ('~> 3.1')
* [LD::Patch][] ('~> 3.1')
* [SHACL][SHACL gem] ('~> 0.1')
* [ShEx][ShEx gem] ('~> 0.6')
* [SPARQL][SPARQL gem] ('~> 3.1')
* [SPARQL::Client][] ('~> 3.1')
Expand Down Expand Up @@ -124,6 +127,7 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
[JSON::LD]: http://www.rubydoc.info/github/ruby-rdf/json-ld
[JSON::LD::Preloaded]: http://www.rubydoc.info/github/ruby-rdf/json-ld-preloaded
[LD::Patch]: http://www.rubydoc.info/github/ruby-rdf/ld-patch
[SHACL gem]: http://www.rubydoc.info/github/ruby-rdf/shacl
[ShEx gem]: http://www.rubydoc.info/github/ruby-rdf/shex
[SPARQL gem]: http://www.rubydoc.info/github/ruby-rdf/sparql
[SPARQL::Client]: http://www.rubydoc.info/github/ruby-rdf/sparql-client
Expand All @@ -146,6 +150,7 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
[RDFa]: http://www.w3.org/TR/rdfa-core/
[RDFS]: http://www.w3.org/TR/rdf11-mt/
[schema.org]: http://schema.org/
[SHACL]: https://www.w3.org/TR/shacl/
[ShEx]: http://shex.io/shex-semantics/
[SPARQL]: http://www.w3.org/TR/sparql11-overview/
[TriG]: http://www.w3.org/TR/trig/
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.3
3.1.4
3 changes: 3 additions & 0 deletions lib/linkeddata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ module LinkedData
# @see https://rubygems.org/gems/rdf-xsd
require 'rdf/xsd'

# @see https://rubygems.org/gems/shacl
require 'shacl'

# @see https://rubygems.org/gems/shex
require 'shex'

Expand Down
1 change: 1 addition & 0 deletions linkeddata.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency 'json-ld', '~> 3.1', '>= 3.1.7'
gem.add_runtime_dependency 'json-ld-preloaded', '~> 3.1', '>= 3.1.4'
gem.add_runtime_dependency 'ld-patch', '~> 3.1', '>= 3.1.2'
gem.add_runtime_dependency 'shacl', '~> 0.1', '>= 0.1.0'
gem.add_runtime_dependency 'shex', '~> 0.6', '>= 0.6.1'
gem.add_runtime_dependency 'sparql', '~> 3.1', '>= 3.1.4'
gem.add_runtime_dependency 'sparql-client', '~> 3.1', '>= 3.1.1'
Expand Down

0 comments on commit 9a2dd27

Please sign in to comment.