Skip to content

Commit

Permalink
Finish 3.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Apr 19, 2019
2 parents 5854da9 + 7281893 commit 64711e3
Show file tree
Hide file tree
Showing 22 changed files with 874 additions and 874 deletions.
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Community contributions are essential for keeping Ruby RDF great. We want to kee

This repository uses [Git Flow](https://github.com/nvie/gitflow) to manage development and release activity. All submissions _must_ be on a feature branch based on the _develop_ branch to ease staging and integration.

* create or respond to an issue on the [Github Repository](http://github.com/ruby-rdf/rdf-turtle/issues)
* create or respond to an issue on the [Github Repository](https://github.com/ruby-rdf/rdf-turtle/issues)
* Fork and clone the repo:
`git clone [email protected]:your-username/rdf-turtle.git`
* Install bundle:
Expand All @@ -30,7 +30,7 @@ This repository uses [Git Flow](https://github.com/nvie/gitflow) to manage devel
of thumb, additions larger than about 15 lines of code), we need an
explicit [public domain dedication][PDD] on record from you.

[YARD]: http://yardoc.org/
[YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md
[PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
[YARD]: https://yardoc.org/
[YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md
[PDD]: https://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
[pr]: https://github.com/ruby-rdf/rdf-turtle/compare/
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source "http://rubygems.org"
source "https://rubygems.org"

gemspec

Expand Down
2 changes: 1 addition & 1 deletion History
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* Replace remaining uses of SPARQL with RDF::Turtle or RDF::LL1

### 0.0.3
* Completed RDF 1.1 Turtle based on http://www.w3.org/TR/2011/WD-turtle-20110809/
* Completed RDF 1.1 Turtle based on https://www.w3.org/TR/2011/WD-turtle-20110809/
* Reader
* Writer
* Issues:
Expand Down
48 changes: 24 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[Turtle][] reader/writer for [RDF.rb][RDF.rb] .

[![Gem Version](https://badge.fury.io/rb/rdf-turtle.png)](http://badge.fury.io/rb/rdf-turtle)
[![Build Status](https://travis-ci.org/ruby-rdf/rdf-turtle.png?branch=master)](http://travis-ci.org/ruby-rdf/rdf-turtle)
[![Gem Version](https://badge.fury.io/rb/rdf-turtle.png)](https://badge.fury.io/rb/rdf-turtle)
[![Build Status](https://travis-ci.org/ruby-rdf/rdf-turtle.png?branch=master)](https://travis-ci.org/ruby-rdf/rdf-turtle)
[![Coverage Status](https://coveralls.io/repos/ruby-rdf/rdf-turtle/badge.svg)](https://coveralls.io/r/ruby-rdf/rdf-turtle)
[![Dependency Status](https://gemnasium.com/ruby-rdf/rdf-turtle.png)](https://gemnasium.com/ruby-rdf/rdf-turtle)

Expand All @@ -15,7 +15,7 @@ RDF::Turtle parses [Turtle][Turtle] and [N-Triples][N-Triples] into statements o

Install with `gem install rdf-turtle`

* 100% free and unencumbered [public domain](http://unlicense.org/) software.
* 100% free and unencumbered [public domain](https://unlicense.org/) software.
* Implements a complete parser for [Turtle][].
* Compatible with Ruby >= 2.2.2.
* Optional streaming writer, to serialize large graphs
Expand Down Expand Up @@ -85,22 +85,22 @@ This version uses a hand-written parser using the Lexer from the [EBNF][] gem in

## Dependencies

* [Ruby](http://ruby-lang.org/) (>= 2.2)
* [RDF.rb](http://rubygems.org/gems/rdf) (~> 3.0)
* [Ruby](https://ruby-lang.org/) (>= 2.2)
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.0)
* [EBNF][] (~> 1.1)

## Installation

The recommended installation method is via [RubyGems](http://rubygems.org/).
The recommended installation method is via [RubyGems](https://rubygems.org/).
To install the latest official release of the `RDF::Turtle` gem, do:

% [sudo] gem install rdf-turtle

## Mailing List
* <http://lists.w3.org/Archives/Public/public-rdf-ruby/>
* <https://lists.w3.org/Archives/Public/public-rdf-ruby/>

## Author
* [Gregg Kellogg](http://github.com/gkellogg) - <http://greggkellogg.net/>
* [Gregg Kellogg](https://github.com/gkellogg) - <https://greggkellogg.net/>

## Contributing
This repository uses [Git Flow](https://github.com/nvie/gitflow) to mange development and release activity. All submissions _must_ be on a feature branch based on the _develop_ branch to ease staging and integration.
Expand All @@ -119,20 +119,20 @@ This repository uses [Git Flow](https://github.com/nvie/gitflow) to mange develo

## License
This is free and unencumbered public domain software. For more information,
see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.

A copy of the [Turtle EBNF][] and derived parser files are included in the repository, which are not covered under the UNLICENSE. These files are covered via the [W3C Document License](http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231).

[Ruby]: http://ruby-lang.org/
[RDF]: http://www.w3.org/RDF/
[YARD]: http://yardoc.org/
[YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md
[PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
[RDF.rb]: http://rubydoc.info/github/ruby-rdf/rdf
[EBNF]: http://rubygems.org/gems/ebnf
[Backports]: http://rubygems.org/gems/backports
[N-Triples]: http://www.w3.org/TR/rdf-testcases/#ntriples
[Turtle]: http://www.w3.org/TR/2012/WD-turtle-20120710/
[Turtle doc]: http://rubydoc.info/github/ruby-rdf/rdf-turtle/master/file/README.md
[Turtle EBNF]: http://dvcs.w3.org/hg/rdf/file/default/rdf-turtle/turtle.bnf
see <https://unlicense.org/> or the accompanying {file:UNLICENSE} file.

A copy of the [Turtle EBNF][] and derived parser files are included in the repository, which are not covered under the UNLICENSE. These files are covered via the [W3C Document License](https://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231).

[Ruby]: https://ruby-lang.org/
[RDF]: https://www.w3.org/RDF/
[YARD]: https://yardoc.org/
[YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md
[PDD]: https://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
[RDF.rb]: https://rubydoc.info/github/ruby-rdf/rdf
[EBNF]: https://rubygems.org/gems/ebnf
[Backports]: https://rubygems.org/gems/backports
[N-Triples]: https://www.w3.org/TR/rdf-testcases/#ntriples
[Turtle]: https://www.w3.org/TR/2012/WD-turtle-20120710/
[Turtle doc]: https://rubydoc.info/github/ruby-rdf/rdf-turtle/master/file/README.md
[Turtle EBNF]: https://dvcs.w3.org/hg/rdf/file/default/rdf-turtle/turtle.bnf
[Freebase Dumps]: https://developers.google.com/freebase/data
2 changes: 1 addition & 1 deletion UNLICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to <http://unlicense.org/>
For more information, please refer to <https://unlicense.org/>
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.5
3.0.6
40 changes: 20 additions & 20 deletions etc/doap-ntriples.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,26 @@
@prefix ex: <http://example.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://rubygems.org/gems/rdf> a doap:Project ;
<https://rubygems.org/gems/rdf> a doap:Project ;
doap:name "RDF.rb" ;
doap:homepage <http://rubygems.org/gems/rdf> ;
doap:homepage <https://rubygems.org/gems/rdf> ;
doap:license <http://creativecommons.org/licenses/publicdomain/> ;
doap:shortdesc "A Ruby library for working with Resource Description Framework (RDF) data."@en ;
doap:description "RDF.rb is a pure-Ruby library for working with Resource Description Framework (RDF) data."@en ;
doap:created "2007-10-23" ;
doap:platform "Ruby" ;
doap:category <http://dbpedia.org/resource/Resource_Description_Framework>,
<http://dbpedia.org/resource/Ruby_(programming_language)> ;
doap:implements <http://www.w3.org/TR/rdf11-concepts/>,
<http://www.w3.org/TR/n-quads/>,
<http://www.w3.org/TR/n-triples/> ;
doap:download-page <http://rubygems.org/gems/rdf/> ;
doap:bug-database <http://github.com/ruby-rdf/rdf/issues> ;
doap:blog <http://ar.to/>, <http://blog.datagraph.org/> ;
doap:implements <https://www.w3.org/TR/rdf11-concepts/>,
<https://www.w3.org/TR/n-quads/>,
<https://www.w3.org/TR/n-triples/> ;
doap:download-page <https://rubygems.org/gems/rdf/> ;
doap:bug-database <https://github.com/ruby-rdf/rdf/issues> ;
doap:blog <https://ar.to/>, <http://blog.datagraph.org/> ;
doap:vendor <http://datagraph.org/> ;
doap:developer <http://ar.to/#self>, <http://bhuga.net/#ben>, <http://greggkellogg.net/foaf#me> ;
doap:maintainer <http://ar.to/#self>, <http://bhuga.net/#ben>, <http://greggkellogg.net/foaf#me> ;
doap:documenter <http://ar.to/#self>, <http://bhuga.net/#ben>, <http://greggkellogg.net/foaf#me> ;
doap:developer <https://ar.to/#self>, <https://bhuga.net/#ben>, <https://greggkellogg.net/foaf#me> ;
doap:maintainer <https://ar.to/#self>, <https://bhuga.net/#ben>, <https://greggkellogg.net/foaf#me> ;
doap:documenter <https://ar.to/#self>, <https://bhuga.net/#ben>, <https://greggkellogg.net/foaf#me> ;
doap:helper [a foaf:Person ;
foaf:name "Călin Ardelean" ;
foaf:mbox_sha1sum "274bd18402fc773ffc0606996aa1fb90b603aa29"] ;
Expand Down Expand Up @@ -54,28 +54,28 @@
doap:helper [a foaf:Person ;
foaf:name "Pius Uzamere" ;
foaf:mbox_sha1sum "bedbbf2451e5beb38d59687c0460032aff92cd3c"] ;
foaf:maker <http://ar.to/#self> ;
dc:creator <http://ar.to/#self> .
foaf:maker <https://ar.to/#self> ;
dc:creator <https://ar.to/#self> .

<http://ar.to/#self> a foaf:Person ;
<https://ar.to/#self> a foaf:Person ;
foaf:name "Arto Bendiken" ;
foaf:mbox <mailto:[email protected]> ;
foaf:mbox_sha1sum "a033f652c84a4d73b8c26d318c2395699dd2bdfb",
"d0737cceb55eb7d740578d2db1bc0727e3ed49ce" ;
foaf:homepage <http://ar.to/> ;
foaf:homepage <https://ar.to/> ;
foaf:made <> ;
rdfs:isDefinedBy <http://datagraph.org/bendiken/foaf> .

<http://bhuga.net/#ben> a foaf:Person ;
<https://bhuga.net/#ben> a foaf:Person ;
foaf:name "Ben Lavender" ;
foaf:mbox <mailto:[email protected]> ;
foaf:mbox_sha1sum "dbf45f4ffbd27b67aa84f02a6a31c144727d10af" ;
foaf:homepage <http://bhuga.net/> ;
foaf:homepage <https://bhuga.net/> ;
rdfs:isDefinedBy <http://datagraph.org/bhuga/foaf> .

<http://greggkellogg.net/foaf#me> a foaf:Person ;
<https://greggkellogg.net/foaf#me> a foaf:Person ;
foaf:name "Gregg Kellogg" ;
foaf:mbox <mailto:[email protected]> ;
foaf:mbox_sha1sum "35bc44e6d0070e5ad50ccbe0d24403c96af2b9bd" ;
foaf:homepage <http://greggkellogg.net/>;
rdfs:isDefinedBy <http://greggkellogg.net/foaf> .
foaf:homepage <https://greggkellogg.net/>;
rdfs:isDefinedBy <https://greggkellogg.net/foaf> .
52 changes: 26 additions & 26 deletions etc/doap.nt
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
<http://rubygems.org/gems/rdf-turtle> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
<http://rubygems.org/gems/rdf-turtle> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestSubject> .
<http://rubygems.org/gems/rdf-turtle> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Software> .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#name> "RDF::Turtle" .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#homepage> <http://ruby-rdf.github.com/rdf-turtle> .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#license> <http://creativecommons.org/licenses/publicdomain/> .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#shortdesc> "Turtle reader/writer for Ruby."@en .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#description> "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#created> "2011-08-29"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#programming-language> "Ruby" .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/turtle/> .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Resource_Description_Framework> .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Ruby_(programming_language)> .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#download-page> <http://rubygems.org/gems/rdf-turtle> .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#mailing-list> <http://lists.w3.org/Archives/Public/public-rdf-ruby/> .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#bug-database> <http://github.com/ruby-rdf/rdf-turtle/issues> .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#blog> <http://greggkellogg.net/> .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#developer> <http://greggkellogg.net/foaf#me> .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#maintainer> <http://greggkellogg.net/foaf#me> .
<http://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#documenter> <http://greggkellogg.net/foaf#me> .
<http://rubygems.org/gems/rdf-turtle> <http://xmlns.com/foaf/0.1/maker> <http://greggkellogg.net/foaf#me> .
<http://rubygems.org/gems/rdf-turtle> <http://purl.org/dc/terms/title> "RDF::Turtle" .
<http://rubygems.org/gems/rdf-turtle> <http://purl.org/dc/terms/description> "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en .
<http://rubygems.org/gems/rdf-turtle> <http://purl.org/dc/terms/date> "2011-08-29"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://rubygems.org/gems/rdf-turtle> <http://purl.org/dc/terms/creator> <http://greggkellogg.net/foaf#me> .
<http://rubygems.org/gems/rdf-turtle> <http://purl.org/dc/terms/isPartOf> <http://rubygems.org/gems/rdf> .
<https://rubygems.org/gems/rdf-turtle> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
<https://rubygems.org/gems/rdf-turtle> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestSubject> .
<https://rubygems.org/gems/rdf-turtle> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Software> .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#name> "RDF::Turtle" .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#homepage> <https://ruby-rdf.github.com/rdf-turtle> .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#license> <http://creativecommons.org/licenses/publicdomain/> .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#shortdesc> "Turtle reader/writer for Ruby."@en .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#description> "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#created> "2011-08-29"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#programming-language> "Ruby" .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#implements> <https://www.w3.org/TR/turtle/> .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Resource_Description_Framework> .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Ruby_(programming_language)> .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#download-page> <https://rubygems.org/gems/rdf-turtle> .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#mailing-list> <https://lists.w3.org/Archives/Public/public-rdf-ruby/> .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#bug-database> <https://github.com/ruby-rdf/rdf-turtle/issues> .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#blog> <https://greggkellogg.net/> .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#developer> <https://greggkellogg.net/foaf#me> .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#maintainer> <https://greggkellogg.net/foaf#me> .
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#documenter> <https://greggkellogg.net/foaf#me> .
<https://rubygems.org/gems/rdf-turtle> <http://xmlns.com/foaf/0.1/maker> <https://greggkellogg.net/foaf#me> .
<https://rubygems.org/gems/rdf-turtle> <http://purl.org/dc/terms/title> "RDF::Turtle" .
<https://rubygems.org/gems/rdf-turtle> <http://purl.org/dc/terms/description> "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en .
<https://rubygems.org/gems/rdf-turtle> <http://purl.org/dc/terms/date> "2011-08-29"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://rubygems.org/gems/rdf-turtle> <http://purl.org/dc/terms/creator> <https://greggkellogg.net/foaf#me> .
<https://rubygems.org/gems/rdf-turtle> <http://purl.org/dc/terms/isPartOf> <https://rubygems.org/gems/rdf> .
26 changes: 13 additions & 13 deletions etc/doap.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,27 @@
@prefix ex: <http://example.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://rubygems.org/gems/rdf-turtle> a doap:Project, earl:TestSubject, earl:Software ;
<https://rubygems.org/gems/rdf-turtle> a doap:Project, earl:TestSubject, earl:Software ;
doap:name "RDF::Turtle" ;
doap:homepage <http://ruby-rdf.github.com/rdf-turtle> ;
doap:homepage <https://ruby-rdf.github.com/rdf-turtle> ;
doap:license <http://creativecommons.org/licenses/publicdomain/> ;
doap:shortdesc "Turtle reader/writer for Ruby."@en ;
doap:description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en ;
doap:created "2011-08-29"^^xsd:date ;
doap:programming-language "Ruby" ;
doap:implements <http://www.w3.org/TR/turtle/> ;
doap:implements <https://www.w3.org/TR/turtle/> ;
doap:category <http://dbpedia.org/resource/Resource_Description_Framework>,
<http://dbpedia.org/resource/Ruby_(programming_language)> ;
doap:download-page <http://rubygems.org/gems/rdf-turtle> ;
doap:mailing-list <http://lists.w3.org/Archives/Public/public-rdf-ruby/> ;
doap:bug-database <http://github.com/ruby-rdf/rdf-turtle/issues> ;
doap:blog <http://greggkellogg.net/> ;
doap:developer <http://greggkellogg.net/foaf#me> ;
doap:maintainer <http://greggkellogg.net/foaf#me> ;
doap:documenter <http://greggkellogg.net/foaf#me> ;
foaf:maker <http://greggkellogg.net/foaf#me> ;
doap:download-page <https://rubygems.org/gems/rdf-turtle> ;
doap:mailing-list <https://lists.w3.org/Archives/Public/public-rdf-ruby/> ;
doap:bug-database <https://github.com/ruby-rdf/rdf-turtle/issues> ;
doap:blog <https://greggkellogg.net/> ;
doap:developer <https://greggkellogg.net/foaf#me> ;
doap:maintainer <https://greggkellogg.net/foaf#me> ;
doap:documenter <https://greggkellogg.net/foaf#me> ;
foaf:maker <https://greggkellogg.net/foaf#me> ;
dc:title "RDF::Turtle" ;
dc:description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en ;
dc:date "2011-08-29"^^xsd:date ;
dc:creator <http://greggkellogg.net/foaf#me> ;
dc:isPartOf <http://rubygems.org/gems/rdf> .
dc:creator <https://greggkellogg.net/foaf#me> ;
dc:isPartOf <https://rubygems.org/gems/rdf> .
Loading

0 comments on commit 64711e3

Please sign in to comment.