Skip to content

Commit

Permalink
Finish 3.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Mar 21, 2021
2 parents d046078 + dad9331 commit bf00b65
Show file tree
Hide file tree
Showing 35 changed files with 9,881 additions and 5,231 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This is a [Ruby][] implementation of [SPARQL][] for [RDF.rb][].
* Compatible with Ruby >= 2.2.2.
* Compatible with older Ruby versions with the help of the [Backports][] gem.
* Supports Unicode query strings both on all versions of Ruby.
* Provisional support for [SPARQL*][].
* Provisional support for [SPARQL-star][].

## Description

Expand Down Expand Up @@ -96,9 +96,9 @@ Then, use the function in a query:

See {SPARQL::Algebra::Expression.register_extension} for details.

### SPARQLStar (SPARQL*)
### SPARQLStar (SPARQL-star)

The gem supports [SPARQL*][] where patterns may include sub-patterns recursively, for a kind of Reification.
The gem supports [SPARQL-star][] where patterns may include sub-patterns recursively, for a kind of Reification.

For example, the following Turtle* file uses a statement as the subject of another statement:

Expand Down Expand Up @@ -159,7 +159,7 @@ As well as a `CONSTRUCT`:
<<?bob foaf:age ?age>> ?b ?c .
}

Note that results can be serialized only when the format supports [RDF*][].
Note that results can be serialized only when the format supports [RDF-star][].

#### SPARQL results

Expand Down Expand Up @@ -448,8 +448,8 @@ A copy of the [SPARQL 1.0 tests][] and [SPARQL 1.1 tests][] are also included in
[grammar]: https://www.w3.org/TR/sparql11-query/#grammar
[RDF 1.1]: https://www.w3.org/TR/rdf11-concepts
[RDF.rb]: https://rubydoc.info/github/ruby-rdf/rdf
[RDF*]: https://w3c.github.io/rdf-star/rdf-star-cg-spec.html
[SPARQL*]: https://w3c.github.io/rdf-star/rdf-star-cg-spec.html#sparql-query-language
[RDF-star]: https://w3c.github.io/rdf-star/rdf-star-cg-spec.html
[SPARQL-star]: https://w3c.github.io/rdf-star/rdf-star-cg-spec.html#sparql-query-language
[Backports]: https://rubygems.org/gems/backports
[Linked Data]: https://rubygems.org/gems/linkeddata
[SPARQL doc]: https://rubydoc.info/github/ruby-rdf/sparql/frames
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.5
3.1.6
5 changes: 3 additions & 2 deletions etc/doap.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@
@prefix earl: <http://www.w3.org/ns/earl#> .

<https://rubygems.org/gems/sparql> a doap:Project;
doap:name "SPARQL";
doap:name "Ruby SPARQL";
doap:shortdesc "SPARQL library for Ruby."@en;
doap:description "SPARQL Implements SPARQL 1.1 Query, Update and result formats for the Ruby RDF.rb library suite."@en;
doap:implements <https://www.w3.org/TR/sparql11-query/>,
<https://www.w3.org/TR/sparql11-update/>,
<https://www.w3.org/TR/sparql11-results-json/>,
<https://www.w3.org/TR/sparql11-results-csv-tsv/>,
<https://www.w3.org/TR/rdf-sparql-XMLres/> ;
<https://www.w3.org/TR/rdf-sparql-XMLres/>,
<https://w3c.github.io/rdf-star/rdf-star-cg-spec.html> ;
doap:developer <https://greggkellogg.net/foaf#me>;
doap:maintainer <https://greggkellogg.net/foaf#me>;
doap:documenter <https://greggkellogg.net/foaf#me>;
Expand Down

0 comments on commit bf00b65

Please sign in to comment.