Skip to content

Commit

Permalink
Finish 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Apr 19, 2019
2 parents d419b1a + ba77d8f commit 234f7b2
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 36 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-n3/issues)
* create or respond to an issue on the [Github Repository](https://github.com/ruby-rdf/rdf-n3/issues)
* Fork and clone the repo:
`git clone [email protected]:your-username/rdf-n3.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-n3/compare/
46 changes: 23 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# RDF::N3 reader/writer and reasoner
Notation-3 reader/writer for [RDF.rb][RDF.rb] .

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

## Description
RDF::N3 is an Notation-3 parser for Ruby using the [RDF.rb][RDF.rb] library suite. Also implements N3 Entailment.
Expand Down Expand Up @@ -110,10 +110,10 @@ http://www.w3.org/2000/10/swap/grammar/n3.n3 (along with bnf-rules.n3) using cwm
[n3-selectors.n3][file:lib/rdf/n3/reader/n3-selectors.rb] is itself used to generate meta.rb using script/build_meta.

## Dependencies
* [RDF.rb](http://rubygems.org/gems/rdf) (~> 3.0, >= 3.0.10)
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.0, >= 3.0.10)

## Documentation
Full documentation available on [RubyDoc.info](http://rubydoc.info/github/ruby-rdf/rdf-n3/frames)
Full documentation available on [RubyDoc.info](https://rubydoc.info/github/ruby-rdf/rdf-n3)

### Principle Classes
* {RDF::N3}
Expand Down Expand Up @@ -148,21 +148,21 @@ Full documentation available on [RubyDoc.info](http://rubydoc.info/github/ruby-r
## Resources
* [RDF.rb][RDF.rb]
* [Distiller](http://rdf.greggkellogg.net/distiller)
* [Documentation](http://rubydoc.info/github/ruby-rdf/rdf-n3/master/frames)
* [Documentation](https://rubydoc.info/github/ruby-rdf/rdf-n3/)
* [History](file:file.History.html)
* [Notation-3][N3]
* [N3 Primer](http://www.w3.org/2000/10/swap/Primer.html)
* [N3 Reification](http://www.w3.org/DesignIssues/Reify.html)
* [N3 Primer](https://www.w3.org/2000/10/swap/Primer.html)
* [N3 Reification](https://www.w3.org/DesignIssues/Reify.html)
* [Turtle][Turtle]
* [W3C SWAP Test suite](http://www.w3.org/2000/10/swap/test/README.html)
* [W3C Turtle Test suite](http://www.w3.org/2001/sw/DataAccess/df1/tests/README.txt)
* [W3C SWAP Test suite](https://www.w3.org/2000/10/swap/test/README.html)
* [W3C Turtle Test suite](https://www.w3.org/2001/sw/DataAccess/df1/tests/README.txt)
* [N-Triples][N-Triples]

## 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 @@ -182,21 +182,21 @@ 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.
see <https://unlicense.org/> or the accompanying {file:UNLICENSE} file.

## Feedback
* <[email protected]>
* <http://rubygems.org/gem/rdf-n3>
* <http://github.com/ruby-rdf/rdf-n3>
* <http://lists.w3.org/Archives/Public/public-rdf-ruby/>
* <https://rubygems.org/gem/rdf-n3>
* <https://github.com/ruby-rdf/rdf-n3>
* <https://lists.w3.org/Archives/Public/public-rdf-ruby/>

[RDF.rb]: http://ruby-rdf.github.com/rdf
[RDF::Turtle]: http://ruby-rdf.github.com/rdf-turtle/
[N3]: http://www.w3.org/DesignIssues/Notation3.html "Notation-3"
[RDF.rb]: https://ruby-rdf.github.com/rdf
[RDF::Turtle]: https://ruby-rdf.github.com/rdf-turtle/
[N3]: https://www.w3.org/DesignIssues/Notation3.html "Notation-3"
[Team Submission]: https://www.w3.org/TeamSubmission/n3/
[Turtle]: http://www.w3.org/TR/turtle/
[N-Triples]: http://www.w3.org/TR/n-triples/
[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
[Turtle]: https://www.w3.org/TR/turtle/
[N-Triples]: https://www.w3.org/TR/n-triples/
[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
[SPARQL S-Expressions]: https://jena.apache.org/documentation/notes/sse.html
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.1
3.1.0
4 changes: 2 additions & 2 deletions etc/doap.n3
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<> a doap:Project ;
doap:name "RDF::N3" ;
doap:homepage <http://github.com/ruby-rdf/rdf-n3> ;
doap:homepage <https://github.com/ruby-rdf/rdf-n3> ;
doap:license <http://creativecommons.org/licenses/publicdomain/> ;
doap:shortdesc "N3 reader/writer for Ruby."@en ;
doap:description "RDF::N3 is an Notation-3 reader/writer and reasoner for the RDF.rb library suite."@en ;
Expand All @@ -20,7 +20,7 @@
<http://dbpedia.org/resource/Ruby_(programming_language)> ;
doap:download-page <http://rubygems.org/gems/rdf-n3> ;
doap:mailing-list <http://lists.w3.org/Archives/Public/public-rdf-ruby/> ;
doap:bug-database <http://github.com/ruby-rdf/rdf-n3/issues> ;
doap:bug-database <https://github.com/ruby-rdf/rdf-n3/issues> ;
doap:blog <http://greggkellogg.net/> ;
doap:developer <http://greggkellogg.net/foaf#me> ;
doap:helper <http://njh.me/> ;
Expand Down
4 changes: 2 additions & 2 deletions etc/doap.nt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<http://rubygems.org/gems/rdf-n3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#name> "RDF::N3" .
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#homepage> <http://github.com/ruby-rdf/rdf-n3> .
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#homepage> <https://github.com/ruby-rdf/rdf-n3> .
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#license> <http://creativecommons.org/licenses/publicdomain/> .
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#shortdesc> "N3 reader/writer reader/writer and reasoner for Ruby."@en .
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#description> "RDF::N3 is an Notation-3 reader/writer for the RDF.rb library suite."@en .
Expand All @@ -11,7 +11,7 @@
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Ruby_(programming_language)> .
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#download-page> <http://rubygems.org/gems/rdf-n3> .
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#mailing-list> <http://lists.w3.org/Archives/Public/public-rdf-ruby/> .
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#bug-database> <http://github.com/ruby-rdf/rdf-n3/issues> .
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#bug-database> <https://github.com/ruby-rdf/rdf-n3/issues> .
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#blog> <http://greggkellogg.net/> .
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#developer> <http://greggkellogg.net/foaf#me> .
<http://rubygems.org/gems/rdf-n3> <http://usefulinc.com/ns/doap#helper> <http://njh.me/> .
Expand Down
2 changes: 1 addition & 1 deletion lib/rdf/n3.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module RDF
# end
#
# @see http://www.rubydoc.info/github/ruby-rdf/rdf/
# @see http://www.w3.org/TR/REC-rdf-syntax/
# @see https://www.w3.org/TR/REC-rdf-syntax/
#
# @author [Gregg Kellogg](http://greggkellogg.net/)
module N3
Expand Down
2 changes: 1 addition & 1 deletion lib/rdf/n3/format.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module RDF::N3
# @example Obtaining serialization format file extension mappings
# RDF::Format.file_extensions #=> {n3: "text/n3"}
#
# @see http://www.w3.org/TR/rdf-testcases/#ntriples
# @see https://www.w3.org/TR/rdf-testcases/#ntriples
class Format < RDF::Format
content_type 'text/n3', extension: :n3, aliases: %w(text/rdf+n3;q=0.2 application/rdf+n3;q=0.2)
content_encoding 'utf-8'
Expand Down
2 changes: 1 addition & 1 deletion lib/rdf/n3/reader/n3.n3
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ quickvariable cfg:matches "\\?[A-Z_a-z\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u02ff
# Whitespace is not allowed

# was: "[a-zA-Z][a-zA-Z0-9]*(-[a-zA-Z0-9]+)?";
langcode cfg:matches "[a-z]+(-[a-z0-9]+)*"; # http://www.w3.org/TR/rdf-testcases/#language
langcode cfg:matches "[a-z]+(-[a-z0-9]+)*"; # https://www.w3.org/TR/rdf-testcases/#language
cfg:canStartWith "a".


Expand Down
2 changes: 1 addition & 1 deletion rdf-n3.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Gem::Specification.new do |gem|
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')

gem.name = %q{rdf-n3}
gem.homepage = %q{http://ruby-rdf.github.com/rdf-n3}
gem.homepage = %q{https://ruby-rdf.github.com/rdf-n3}
gem.license = 'Unlicense'
gem.summary = %q{Notation3 reader/writer and reasoner for RDF.rb.}
gem.description = %q{RDF::N3 is an Notation-3 reader/writer and reasoner for the RDF.rb library suite.}
Expand Down

0 comments on commit 234f7b2

Please sign in to comment.