Skip to content

Commit

Permalink
Finish 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed May 30, 2020
2 parents 70a3b43 + 86120c9 commit 0221db8
Show file tree
Hide file tree
Showing 26 changed files with 915 additions and 657 deletions.
2 changes: 1 addition & 1 deletion AUTHORS
@@ -1 +1 @@
* Gregg Kellogg <gregg@kellogg-assoc.com>
* Gregg Kellogg <gregg@greggkellogg.net>
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
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-rdfa/issues)
* create or respond to an issue on the [Github Repository](https://github.com/ruby-rdf/rdf-rdfa/issues)
* Fork and clone the repo:
`git clone git@github.com:your-username/rdf-rdfa.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-rdfa/compare/
3 changes: 1 addition & 2 deletions Gemfile
@@ -1,4 +1,4 @@
source "http://rubygems.org"
source "https://rubygems.org"

gemspec

Expand Down Expand Up @@ -33,7 +33,6 @@ end
group :debug do
gem "syntax"
gem "byebug", platforms: :mri
gem "ruby-debug", platforms: :jruby
gem "rake"
end

Expand Down
3 changes: 1 addition & 2 deletions Gemfile-pure
@@ -1,5 +1,5 @@
# "Pure" version with out C dependencies
source "http://rubygems.org"
source "https://rubygems.org"

gemspec

Expand Down Expand Up @@ -34,5 +34,4 @@ end
group :debug do
gem "syntax"
gem "byebug", platforms: :mri
gem "ruby-debug", platforms: :jruby
end
83 changes: 36 additions & 47 deletions README.md
Expand Up @@ -3,8 +3,8 @@ This repository uses [Git Flow](https://github.com/nvie/gitflow) to mange develo

[RDFa][RDFa 1.1 Core] parser for RDF.rb.

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

## DESCRIPTION
Expand All @@ -15,7 +15,7 @@ RDF::RDFa parses [RDFa][RDFa 1.1 Core] into statements or triples.

* Fully compliant RDFa 1.1 parser.
* Template-based Writer to generate XHTML+RDFa.
* Writer uses user-replacable [Haml][Haml]-based templates to generate RDFa.
* Writer uses user-replaceable [Haml][Haml] -based templates to generate RDFa.
* If available, uses [Nokogiri][] for parsing HTML/SVG, falls back to REXML otherwise. For HTML5, include the [Nokogumbo][] gem for a pure-HTML5 parser with better error detection.

Install with `gem install rdf-rdfa`
Expand All @@ -37,7 +37,7 @@ This version fully supports the limited syntax of [RDFa Lite 1.1][]. This includ
One of the issues with vocabularies was that they discourage re-use of existing vocabularies when terms from several vocabularies are used at the same time. As it is common (encouraged) for RDF vocabularies to form sub-class and/or sub-property relationships with well defined vocabularies, the RDFa vocabulary expansion mechanism takes advantage of this.

As an optional part of RDFa processing, an RDFa processor will perform limited
[OWL 2 RL Profile entailment](http://www.w3.org/TR/2009/REC-owl2-profiles-20091027/#Reasoning_in_OWL_2_RL_and_RDF_Graphs_using_Rules),
[OWL 2 RL Profile entailment](https://www.w3.org/TR/2009/REC-owl2-profiles-20091027/#Reasoning_in_OWL_2_RL_and_RDF_Graphs_using_Rules),
specifically rules prp-eqp1, prp-eqp2, cax-sco, cax-eqc1, and
cax-eqc2. This causes sub-classes and sub-properties of type and property IRIs to be added
to the output graph.
Expand Down Expand Up @@ -123,24 +123,24 @@ The @typeof attribute has changed; previously, it always created a new subject,

For example:

<div typeof="foaf:Person" about="http://greggkellogg.net/foaf#me">
<div typeof="foaf:Person" about="https://greggkellogg.net/foaf#me">
<p property="name">Gregg Kellogg</span>
<a rel="knows" typeof="foaf:Person" href="http://manu.sporny.org/#this">
<a rel="knows" typeof="foaf:Person" href="https://manu.sporny.org/#this">
<span property="name">Manu Sporny</span>
</a>
</div>

results in

<http://greggkellogg.net/foaf#me> a foaf:Person;
<https://greggkellogg.net/foaf#me> a foaf:Person;
foaf:name "Gregg Kellogg";
foaf:knows <http://manu.sporny.org/#this> .
<http://manu.sporny.org/#this> a foaf:Person;
foaf:knows <https://manu.sporny.org/#this> .
<https://manu.sporny.org/#this> a foaf:Person;
foaf:name "Manu Sporny" .

Note that if the explicit @href is not present, i.e.,

<div typeof="foaf:Person" about="http://greggkellogg.net/foaf#me">
<div typeof="foaf:Person" about="https://greggkellogg.net/foaf#me">
<p property="name">Gregg Kellogg</span>
<a href="knows" typeof="foaf:Person">
<span property="name">Manu Sporny</span>
Expand All @@ -149,7 +149,7 @@ Note that if the explicit @href is not present, i.e.,

this results in

<http://greggkellogg.net/foaf#me> a foaf:Person;
<https://greggkellogg.net/foaf#me> a foaf:Person;
foaf:name "Gregg Kellogg";
foaf:knows [
a foaf:Person;
Expand Down Expand Up @@ -397,36 +397,25 @@ The template hash defines four Haml templates:
}

## Dependencies
* [Ruby](http://ruby-lang.org/) (>= 2.4)
* [RDF.rb](http://rubygems.org/gems/rdf) (~> 3.1)
* [Ruby](https://ruby-lang.org/) (>= 2.4)
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.1)
* [Haml](https://rubygems.org/gems/haml) (~> 5.1)
* [HTMLEntities](https://rubygems.org/gems/htmlentities) (>= 4.3)
* Soft dependency on [Nokogiri](http://rubygems.org/gems/nokogiri) (>= 1.10)
* Soft dependency on [Nokogiri](https://rubygems.org/gems/nokogiri) (>= 1.10)
* Soft dependency on [Nokogumbo](https://github.com/rubys/nokogumbo) (>= 2.0)

## Documentation
Full documentation available on [Rubydoc.info][RDFa doc]

### Principle Classes
* {RDF::RDFa::Format}
* {RDF::RDFa::HTML}
Asserts :html format, text/html mime-type and .html file extension.
* {RDF::RDFa::XHTML}
Asserts :html format, application/xhtml+xml mime-type and .xhtml file extension.
* {RDF::RDFa::SVG}
Asserts :svg format, image/svg+xml mime-type and .svg file extension.
* {RDF::RDFa::Reader}
* {RDF::RDFa::Reader::Nokogiri}
* {RDF::RDFa::Reader::REXML}
* {RDF::RDFa::Context}
* {RDF::RDFa::Expansion}
* {RDF::RDFa::Writer}

### Additional vocabularies
* {RDF::RDFA}
* {RDF::XML}
* {RDF::XSI}

## TODO
* Add support for LibXML and REXML bindings, and use the best available
* Consider a SAX-based parser for improved performance
Expand All @@ -438,13 +427,13 @@ Full documentation available on [Rubydoc.info][RDFa doc]
* [History](file:History.md)
* [RDFa 1.1 Core][RDFa 1.1 Core]
* [XHTML+RDFa 1.1][XHTML+RDFa 1.1]
* [RDFa-test-suite](http://rdfa.info/test-suite/ "RDFa test suite")
* [RDFa-test-suite](https://rdfa.info/test-suite/ "RDFa test suite")

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

## Contributors
* [Nicholas Humfrey](http://github.com/njh) - <http://njh.me/>
* [Nicholas Humfrey](https://github.com/njh) - <https://njh.me/>

## 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 @@ -464,27 +453,27 @@ 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 [UNLICENSE](UNLICENSE) file.
see <https://unlicense.org/> or the accompanying [UNLICENSE](UNLICENSE) file.

## FEEDBACK

* gregg@greggkellogg.net
* <http://rubygems.org/rdf-rdfa>
* <http://github.com/ruby-rdf/rdf-rdfa>
* <http://lists.w3.org/Archives/Public/public-rdf-ruby/>

[RDF.rb]: http://rubygems.org/gems/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
[RDFa 1.1 Core]: http://www.w3.org/TR/2012/REC-rdfa-core-20120607/ "RDFa 1.1 Core"
[RDFa Lite 1.1]: http://www.w3.org/TR/2012/REC-rdfa-lite-20120607/ "RDFa Lite 1.1"
[XHTML+RDFa 1.1]: http://www.w3.org/TR/2012/REC-xhtml-rdfa-20120607/ "XHTML+RDFa 1.1"
[HTML+RDFa 1.1]: http://www.w3.org/TR/rdfa-in-html/ "HTML+RDFa 1.1"
[RDFa-test-suite]: http://rdfa.info/test-suite/ "RDFa test suite"
[Role Attr]: http://www.w3.org/TR/role-attribute/ "Role Attribute"
[RDFa doc]: http://rubydoc.info/github/ruby-rdf/rdf-rdfa/frames
[Haml]: http://haml-lang.com/
[Turtle]: http://www.w3.org/TR/2011/WD-turtle-20110809/
[Nokogiri]: http://www.nokogiri.org
* <https://rubygems.org/rdf-rdfa>
* <https://github.com/ruby-rdf/rdf-rdfa>
* <https://lists.w3.org/Archives/Public/public-rdf-ruby/>

[RDF.rb]: https://rubygems.org/gems/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
[RDFa 1.1 Core]: https://www.w3.org/TR/2012/REC-rdfa-core-20120607/ "RDFa 1.1 Core"
[RDFa Lite 1.1]: https://www.w3.org/TR/2012/REC-rdfa-lite-20120607/ "RDFa Lite 1.1"
[XHTML+RDFa 1.1]: https://www.w3.org/TR/2012/REC-xhtml-rdfa-20120607/ "XHTML+RDFa 1.1"
[HTML+RDFa 1.1]: https://www.w3.org/TR/rdfa-in-html/ "HTML+RDFa 1.1"
[RDFa-test-suite]: https://rdfa.info/test-suite/ "RDFa test suite"
[Role Attr]: https://www.w3.org/TR/role-attribute/ "Role Attribute"
[RDFa doc]: https://rubydoc.info/github/ruby-rdf/rdf-rdfa/frames
[Haml]: https://haml-lang.com/
[Turtle]: https://www.w3.org/TR/2011/WD-turtle-20110809/
[Nokogiri]: https://www.nokogiri.org
[Nokogumbo]: https://github.com/rubys/nokogumbo/#readme
2 changes: 1 addition & 1 deletion UNLICENSE
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
@@ -1 +1 @@
3.1.0
3.1.1
16 changes: 8 additions & 8 deletions etc/doap.html
Expand Up @@ -7,7 +7,7 @@
vocab="http://usefulinc.com/ns/doap#">
<head>
<title lang="en" property="shortdesc">RDFa reader/writer for Ruby.</title>
<base href="http://rubygems.org/gems/rdf-rdfa" />
<base href="https://rubygems.org/gems/rdf-rdfa" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body about="" typeof="Project">
Expand Down Expand Up @@ -40,8 +40,8 @@
<dt>Created</dt><dd property="created" datatype="xsd:date">2011-08-29</dd>
<dt>Blog</dt><dd><a href="http://greggkellogg.net/" property="blog">http://greggkellogg.net/</a></dd>
<dt>Bug DB</dt><dd>
<a href="http://github.com/ruby-rdf/rdf-rdfa/issues" property="bug-database">
http://github.com/ruby-rdf/rdf-rdfa/issues
<a href="https://github.com/ruby-rdf/rdf-rdfa/issues" property="bug-database">
https://github.com/ruby-rdf/rdf-rdfa/issues
</a>
</dd>
<dt>Programming Language</dt><dd property="doap:programming-language">Ruby</dd>
Expand All @@ -50,14 +50,14 @@
for
<a href="http://dbpedia.org/resource/Ruby_(programming_language)">Ruby</a>
</dd>
<dt>Download</dt><dd><a href="http://rubygems.org/gems/rdf-rdfa" property="download-page">
http://rubygems.org/gems/rdf-rdfa
<dt>Download</dt><dd><a href="https://rubygems.org/gems/rdf-rdfa" property="download-page">
https://rubygems.org/gems/rdf-rdfa
</a></dd>
<dt>Home Page</dt><dd><a href="http://github.com/ruby-rdf/rdf-rdfa" property="homepage">
http://github.com/ruby-rdf/rdf-rdfa
<dt>Home Page</dt><dd><a href="https://github.com/ruby-rdf/rdf-rdfa" property="homepage">
https://github.com/ruby-rdf/rdf-rdfa
</a></dd>
<dt>License</dt><dd>
<a href="http://creativecommons.org/licenses/publicdomain/" property="license">Public Domain</a>
<a href="https://unlicense.org/1.0/" property="license">Public Domain</a>
</dd>
<dt>Mailing List</dt><dd><a href="http://lists.w3.org/Archives/Public/public-rdf-ruby/" property="mailing-list">
http://lists.w3.org/Archives/Public/public-rdf-ruby/
Expand Down
54 changes: 27 additions & 27 deletions etc/doap.nt
@@ -1,27 +1,27 @@
<http://rubygems.org/gems/rdf-rdfa> <http://www.w3.org/ns/rdfa#usesVocabulary> <http://usefulinc.com/ns/doap#> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#shortdesc> "RDFa reader/writer for Ruby."@en .
<http://rubygems.org/gems/rdf-rdfa> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#name> "RDF::RDFa" .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#description> "\n RDF::RDFa is an RDFa reader/writer for Ruby using the RDF.rb library suite.\n "@en .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/rdfa-syntax/> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/rdfa-core/> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/xhtml-rdfa/> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/rdfa-in-html/> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/rdfa-lite/> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/role-attribute/> .
<http://rubygems.org/gems/rdf-rdfa> <http://purl.org/dc/terms/creator> <http://greggkellogg.net/foaf#me> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#developer> <http://greggkellogg.net/foaf#me> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#documenter> <http://greggkellogg.net/foaf#me> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#maintainer> <http://greggkellogg.net/foaf#me> .
<http://rubygems.org/gems/rdf-rdfa> <http://xmlns.com/foaf/0.1/maker> <http://greggkellogg.net/foaf#me> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#helper> <http://njh.me/> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#created> "2011-08-29"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#blog> <http://greggkellogg.net/> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#bug-database> <http://github.com/ruby-rdf/rdf-rdfa/issues> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#programming-language> "Ruby" .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Resource_Description_Framework> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Ruby_(programming_language)> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#download-page> <http://rubygems.org/gems/rdf-rdfa> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#homepage> <http://github.com/ruby-rdf/rdf-rdfa> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#license> <http://creativecommons.org/licenses/publicdomain/> .
<http://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#mailing-list> <http://lists.w3.org/Archives/Public/public-rdf-ruby/> .
<https://rubygems.org/gems/rdf-rdfa> <http://www.w3.org/ns/rdfa#usesVocabulary> <http://usefulinc.com/ns/doap#> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#shortdesc> "RDFa reader/writer for Ruby."@en .
<https://rubygems.org/gems/rdf-rdfa> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#name> "RDF::RDFa" .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#description> "\n RDF::RDFa is an RDFa reader/writer for Ruby using the RDF.rb library suite.\n "@en .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/rdfa-syntax/> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/rdfa-core/> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/xhtml-rdfa/> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/rdfa-in-html/> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/rdfa-lite/> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/role-attribute/> .
<https://rubygems.org/gems/rdf-rdfa> <http://purl.org/dc/terms/creator> <http://greggkellogg.net/foaf#me> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#developer> <http://greggkellogg.net/foaf#me> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#documenter> <http://greggkellogg.net/foaf#me> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#maintainer> <http://greggkellogg.net/foaf#me> .
<https://rubygems.org/gems/rdf-rdfa> <http://xmlns.com/foaf/0.1/maker> <http://greggkellogg.net/foaf#me> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#helper> <http://njh.me/> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#created> "2011-08-29"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#blog> <http://greggkellogg.net/> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#bug-database> <https://github.com/ruby-rdf/rdf-rdfa/issues> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#programming-language> "Ruby" .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Resource_Description_Framework> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Ruby_(programming_language)> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#download-page> <https://rubygems.org/gems/rdf-rdfa> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#homepage> <https://github.com/ruby-rdf/rdf-rdfa> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#license> <https://unlicense.org/1.0/> .
<https://rubygems.org/gems/rdf-rdfa> <http://usefulinc.com/ns/doap#mailing-list> <http://lists.w3.org/Archives/Public/public-rdf-ruby/> .

0 comments on commit 0221db8

Please sign in to comment.