Skip to content

Commit f6afa23

Browse files
committed
Finish 3.1.1
2 parents c3353fb + 1e9863e commit f6afa23

File tree

19 files changed

+167
-169
lines changed

19 files changed

+167
-169
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Community contributions are essential for keeping Ruby RDF great. We want to kee
66

77
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.
88

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

33-
[YARD]: http://yardoc.org/
34-
[YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md
35-
[PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
33+
[YARD]: https://yardoc.org/
34+
[YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md
35+
[PDD]: https://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
3636
[pr]: https://github.com/ruby-rdf/rdf-trig/compare/

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
source "http://rubygems.org"
1+
source "https://rubygems.org"
22

33
gemspec
44

README.md

Lines changed: 24 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
[TriG][] reader/writer for [RDF.rb][RDF.rb] .
44

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

109
## Description
1110
This is a [Ruby][] implementation of a [TriG][] reader and writer for [RDF.rb][].
@@ -15,7 +14,7 @@ RDF::TriG parses [TriG][Trig] into statements or quads. It also serializes to Tr
1514

1615
Install with `gem install rdf-trig`
1716

18-
* 100% free and unencumbered [public domain](http://unlicense.org/) software.
17+
* 100% free and unencumbered [public domain](https://unlicense.org/) software.
1918
* Implements a complete parser and serializer for [TriG][].
2019
* Compatible with Ruby 2.x, and JRuby 1.7+.
2120
* Optional streaming writer, to serialize large graphs
@@ -58,22 +57,22 @@ There is a new `:stream` option to {RDF::TriG::Writer} which is more efficient f
5857

5958
## Dependencies
6059

61-
* [Ruby](http://ruby-lang.org/) (>= 2.2.2)
62-
* [RDF.rb](http://rubygems.org/gems/rdf) (~> 3.0)
63-
* [rdf-turtle](http://rubygems.org/gems/rdf-turtle) (~> 3.0)
60+
* [Ruby](https://ruby-lang.org/) (>= 2.2.2)
61+
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.0)
62+
* [rdf-turtle](https://rubygems.org/gems/rdf-turtle) (~> 3.0)
6463

6564
## Installation
6665

67-
The recommended installation method is via [RubyGems](http://rubygems.org/).
66+
The recommended installation method is via [RubyGems](https://rubygems.org/).
6867
To install the latest official release of the `RDF::TriG` gem, do:
6968

7069
% [sudo] gem install rdf-trig
7170

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

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

7877
## Contributing
7978
* Do your best to adhere to the existing coding conventions and idioms.
@@ -90,18 +89,18 @@ To install the latest official release of the `RDF::TriG` gem, do:
9089

9190
## License
9291
This is free and unencumbered public domain software. For more information,
93-
see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
94-
95-
A copy of the [TriG 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).
96-
97-
[Ruby]: http://ruby-lang.org/
98-
[RDF]: http://www.w3.org/RDF/
99-
[YARD]: http://yardoc.org/
100-
[YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md
101-
[PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
102-
[RDF.rb]: http://rubydoc.info/github/ruby-rdf/rdf/master/frames
103-
[Backports]: http://rubygems.org/gems/backports
104-
[TriG]: http://www.w3.org/TR/trig/
105-
[TriG doc]: http://rubydoc.info/github/ruby-rdf/rdf-trig/master/file/README.markdown
106-
[TriG EBNF]: http://dvcs.w3.org/hg/rdf/raw-file/default/trig/trig.bnf
107-
[Turtle doc]: http://rubydoc.info/github/ruby-rdf/rdf-turtle/master/file/README.markdown
92+
see <https://unlicense.org/> or the accompanying {file:UNLICENSE} file.
93+
94+
A copy of the [TriG 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).
95+
96+
[Ruby]: https://ruby-lang.org/
97+
[RDF]: https://www.w3.org/RDF/
98+
[YARD]: https://yardoc.org/
99+
[YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md
100+
[PDD]: https://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
101+
[RDF.rb]: https://rubydoc.info/github/ruby-rdf/rdf/master/frames
102+
[Backports]: https://rubygems.org/gems/backports
103+
[TriG]: https://www.w3.org/TR/trig/
104+
[TriG doc]: https://rubydoc.info/github/ruby-rdf/rdf-trig/master/file/README.markdown
105+
[TriG EBNF]: https://dvcs.w3.org/hg/rdf/raw-file/default/trig/trig.bnf
106+
[Turtle doc]: https://rubydoc.info/github/ruby-rdf/rdf-turtle/master/file/README.markdown

UNLICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
2121
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2222
OTHER DEALINGS IN THE SOFTWARE.
2323

24-
For more information, please refer to <http://unlicense.org/>
24+
For more information, please refer to <https://unlicense.org/>

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.0
1+
3.1.1

etc/doap-nquads.ttl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<> a doap:Project ;
99
doap:name "RDF.rb" ;
1010
doap:homepage <http://rubygems.org/gems/rdf> ;
11-
doap:license <http://creativecommons.org/licenses/publicdomain/> ;
11+
doap:license <https://unlicense.org/1.0/> ;
1212
doap:shortdesc "A Ruby library for working with Resource Description Framework (RDF) data."@en ;
1313
doap:description "RDF.rb is a pure-Ruby library for working with Resource Description Framework (RDF) data."@en ;
1414
doap:created "2007-10-23" ;

etc/doap.nq

Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
1+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#maintainer> <https://greggkellogg.net/foaf#me> .
2+
<https://rubygems.org/gems/rdf-trig> <http://purl.org/dc/terms/date> "2011-12-22"^^<http://www.w3.org/2001/XMLSchema#date> .
3+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#repository> <https://github.com/ruby-rdf/rdf-trig> .
4+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#description> "TriG reader/writer for RDF.rb" .
5+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#bug-database> <https://github.com/ruby-rdf/rdf-trig/issues> .
6+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#homepage> <https://github.com/ruby-rdf/rdf-trig> .
7+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#developer> <https://greggkellogg.net/foaf#me> .
8+
<https://rubygems.org/gems/rdf-trig> <http://xmlns.com/foaf/0.1/maker> <https://greggkellogg.net/foaf#me> .
9+
<https://rubygems.org/gems/rdf-trig> <http://purl.org/dc/terms/isPartOf> <http://rubygems.org/gems/rdf> .
10+
<https://rubygems.org/gems/rdf-trig> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestSubject> .
11+
<https://rubygems.org/gems/rdf-trig> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
12+
<https://rubygems.org/gems/rdf-trig> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Software> .
13+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#documenter> <https://greggkellogg.net/foaf#me> .
14+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#mailing-list> <http:s//lists.w3.org/Archives/Public/public-rdf-ruby/> .
15+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#blog> <https://greggkellogg.net/> .
16+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#shortdesc> "TriG reader/writer for Ruby."@en .
17+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#name> "RDF::TriG" .
18+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#wiki> <https://github.com/ruby-rdf/rdf-trig/wiki> .
19+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Resource_Description_Framework> .
20+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Ruby_(programming_language)> .
21+
<https://rubygems.org/gems/rdf-trig> <http://purl.org/dc/terms/description> "TriG reader/writer for RDF.rb" .
22+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#implements> <https://www.w3.org/TR/trig/> .
23+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#license> <https://unlicense.org/1.0/> .
24+
<https://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#programming-language> "Ruby" .
25+
<https://rubygems.org/gems/rdf-trig> <http://purl.org/dc/terms/creator> <https://greggkellogg.net/foaf#me> .
26+
<https://github.com/ruby-rdf/rdf-trig> <http://usefulinc.com/ns/doap#browse> <https://github.com/ruby-rdf/rdf-trig> .
127
<https://github.com/ruby-rdf/rdf-trig> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#GitRepository> .
228
<https://github.com/ruby-rdf/rdf-trig> <http://purl.org/dc/terms/title> "RDF::TriG" .
3-
<https://github.com/ruby-rdf/rdf-trig> <http://usefulinc.com/ns/doap#browse> <https://github.com/ruby-rdf/rdf-trig> .
4-
<http://rubygems.org/gems/rdf-trig> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
5-
<http://rubygems.org/gems/rdf-trig> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestSubject> .
6-
<http://rubygems.org/gems/rdf-trig> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Software> .
7-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#blog> <http://greggkellogg.net/> .
8-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#developer> <http://greggkellogg.net/foaf#me> .
9-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#documenter> <http://greggkellogg.net/foaf#me> .
10-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#maintainer> <http://greggkellogg.net/foaf#me> .
11-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#bug-database> <https://github.com/ruby-rdf/rdf-trig/issues> .
12-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#description> "TriG reader/writer for RDF.rb" .
13-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#name> "RDF::TriG" .
14-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#shortdesc> "TriG reader/writer for Ruby."@en .
15-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#programming-language> "Ruby" .
16-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#repository> <https://github.com/ruby-rdf/rdf-trig> .
17-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#mailing-list> <http://lists.w3.org/Archives/Public/public-rdf-ruby/> .
18-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/trig/> .
19-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Resource_Description_Framework> .
20-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Ruby_(programming_language)> .
21-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#homepage> <http://github.com/ruby-rdf/rdf-trig> .
22-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#license> <http://creativecommons.org/licenses/publicdomain/> .
23-
<http://rubygems.org/gems/rdf-trig> <http://usefulinc.com/ns/doap#wiki> <https://github.com/ruby-rdf/rdf-trig/wiki> .
24-
<http://rubygems.org/gems/rdf-trig> <http://xmlns.com/foaf/0.1/maker> <http://greggkellogg.net/foaf#me> .
25-
<http://rubygems.org/gems/rdf-trig> <http://purl.org/dc/terms/date> "2011-12-22"^^<http://www.w3.org/2001/XMLSchema#date> .
26-
<http://rubygems.org/gems/rdf-trig> <http://purl.org/dc/terms/creator> <http://greggkellogg.net/foaf#me> .
27-
<http://rubygems.org/gems/rdf-trig> <http://purl.org/dc/terms/description> "TriG reader/writer for RDF.rb" .
28-
<http://rubygems.org/gems/rdf-trig> <http://purl.org/dc/terms/isPartOf> <http://rubygems.org/gems/rdf> .
29-
<http://github.com/gkellogg> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/OnlineAccount> .
30-
<http://github.com/gkellogg> <http://purl.org/dc/terms/created> "2009-01-13T08:58:46-08:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
31-
<http://github.com/gkellogg> <http://usefulinc.com/ns/doap#homepage> <http://github.com/gkellogg> .
32-
<http://github.com/gkellogg> <http://xmlns.com/foaf/0.1/accountName> "gkellogg" .
33-
<http://github.com/gkellogg> <http://xmlns.com/foaf/0.1/accountServiceHomepage> <http://github.com/> .
34-
<http://github.com/gkellogg> <http://xmlns.com/foaf/0.1/name> "GitHub" .
35-
<http://github.com/gkellogg> <http://xmlns.com/foaf/0.1/page> <http://github.com/gkellogg> .
36-
<http://greggkellogg.net/foaf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://greggkellogg.net/foaf#me> .
37-
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox> <mailto:[email protected]> <http://greggkellogg.net/foaf#me> .
38-
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "35bc44e6d0070e5ad50ccbe0d24403c96af2b9bd" <http://greggkellogg.net/foaf#me> .
39-
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/name> "Gregg Kellogg" <http://greggkellogg.net/foaf#me> .
40-
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/nick> "gkellogg" <http://greggkellogg.net/foaf#me> .
41-
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/developer> _:proj <http://greggkellogg.net/foaf#me> .
42-
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/account> <http://github.com/gkellogg> <http://greggkellogg.net/foaf#me> .
43-
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/based_near> "San Rafael, CA" <http://greggkellogg.net/foaf#me> .
44-
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/depiction> <http://www.gravatar.com/avatar/42f948adff3afaa52249d963117af7c8> <http://greggkellogg.net/foaf#me> .
45-
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/weblog> <http://greggkellogg.net> <http://greggkellogg.net/foaf#me> .
29+
<https://github.com/gkellogg> <http://xmlns.com/foaf/0.1/accountServiceHomepage> <http://github.com/> .
30+
<https://github.com/gkellogg> <http://purl.org/dc/terms/created> "2009-01-13T08:58:46-08:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
31+
<https://github.com/gkellogg> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/OnlineAccount> .
32+
<https://github.com/gkellogg> <http://xmlns.com/foaf/0.1/accountName> "gkellogg" .
33+
<https://github.com/gkellogg> <http://xmlns.com/foaf/0.1/page> <https://github.com/gkellogg> .
34+
<https://github.com/gkellogg> <http://usefulinc.com/ns/doap#homepage> <https://github.com/gkellogg> .
35+
<https://github.com/gkellogg> <http://xmlns.com/foaf/0.1/name> "GitHub" .
36+
<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/weblog> <https://greggkellogg.net> <https://greggkellogg.net/foaf#me> .
37+
<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "35bc44e6d0070e5ad50ccbe0d24403c96af2b9bd" <https://greggkellogg.net/foaf#me> .
38+
<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/depiction> <http://www.gravatar.com/avatar/42f948adff3afaa52249d963117af7c8> <https://greggkellogg.net/foaf#me> .
39+
<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/nick> "gkellogg" <https://greggkellogg.net/foaf#me> .
40+
<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/developer> _:proj <https://greggkellogg.net/foaf#me> .
41+
<https://greggkellogg.net/foaf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <https://greggkellogg.net/foaf#me> .
42+
<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/account> <https://github.com/gkellogg> <https://greggkellogg.net/foaf#me> .
43+
<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox> <mailto:[email protected]> <https://greggkellogg.net/foaf#me> .
44+
<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/name> "Gregg Kellogg" <https://greggkellogg.net/foaf#me> .
45+
<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/based_near> "San Rafael, CA" <https://greggkellogg.net/foaf#me> .

0 commit comments

Comments
 (0)