Skip to content

Commit 28f1cd8

Browse files
committed
Update doap:license to https://unlicense.org/.
1 parent c526f13 commit 28f1cd8

6 files changed

Lines changed: 822 additions & 755 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ Both reader and writer include provisional support for [Turtle*][RDF*].
4242

4343
Internally, an `RDF::Statement` is treated as another resource, along with `RDF::URI` and `RDF::Node`, which allows an `RDF::Statement` to have a `#subject` or `#object` which is also an `RDF::Statement`.
4444

45+
**Note: This feature is subject to change or elimination as the standards process progresses.**
46+
4547
### Serializing a Graph containing embedded statements
4648

4749
require 'rdf/turtle'
@@ -52,10 +54,10 @@ Internally, an `RDF::Statement` is treated as another resource, along with `RDF:
5254

5355
### Reading a Graph containing embedded statements
5456

55-
By default, the N-Triples reader will reject a document containing a subject resource.
57+
By default, the Turtle reader will reject a document containing a subject resource.
5658

5759
ttl = %(
58-
@prefix foaf: <> .
60+
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
5961
@prefix ex: <http://example.com/> .
6062
<<<bob> foaf:age 23>> ex:certainty 9.0e-1 .
6163
)

etc/doap-ntriples.ttl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<> a doap:Project ;
99
doap:name "RDF.rb" ;
1010
doap:homepage <https://rubygems.org/gems/rdf> ;
11-
doap:license <http://creativecommons.org/licenses/publicdomain/> ;
11+
doap:license <https://unlicense.org/> ;
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" ;
@@ -20,7 +20,7 @@
2020
<http://www.w3.org/TR/n-triples/> ;
2121
doap:download-page <https://rubygems.org/gems/rdf/> ;
2222
doap:bug-database <https://github.com/ruby-rdf/rdf/issues> ;
23-
doap:blog <https://ar.to/>, <http://blog.datagraph.org/> ;
23+
doap:blog <https://ar.to/>, <https://greggkellogg.net/> ;
2424
doap:developer <https://ar.to/#self>, <https://bhuga.net/#ben>, <https://greggkellogg.net/foaf#me> ;
2525
doap:maintainer <https://greggkellogg.net/foaf#me> ;
2626
doap:documenter <https://ar.to/#self>, <https://bhuga.net/#ben>, <https://greggkellogg.net/foaf#me> ;

etc/doap.nt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<https://rubygems.org/gems/rdf-turtle> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Software> .
44
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#name> "RDF::Turtle" .
55
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#homepage> <https://ruby-rdf.github.com/rdf-turtle> .
6-
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#license> <http://creativecommons.org/licenses/publicdomain/> .
6+
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#license> <https://unlicense.org/> .
77
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#shortdesc> "Turtle reader/writer for Ruby."@en .
88
<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 .
99
<https://rubygems.org/gems/rdf-turtle> <http://usefulinc.com/ns/doap#created> "2011-08-29"^^<http://www.w3.org/2001/XMLSchema#date> .

etc/doap.ttl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<> a doap:Project, earl:TestSubject, earl:Software ;
1212
doap:name "RDF::Turtle" ;
1313
doap:homepage <https://ruby-rdf.github.com/rdf-turtle> ;
14-
doap:license <https://creativecommons.org/licenses/publicdomain/> ;
14+
doap:license <https://unlicense.org/> ;
1515
doap:shortdesc "Turtle reader/writer for Ruby."@en ;
1616
doap:description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en ;
1717
doap:created "2011-08-29"^^xsd:date ;

0 commit comments

Comments
 (0)