Skip to content

Commit

Permalink
Version 0.1.2. Update github ownership links.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed May 14, 2012
1 parent ae48168 commit 1579472
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* Gregg Kellogg <gregg@kellogg-assoc.com>
* Gregg Kellogg <gregg@greggkellogg.net>
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rdf-turtle (0.1.1)
rdf-turtle (0.1.2)
rdf (>= 0.3.4)

GEM
Expand Down
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ To install the latest official release of the `RDF::Turtle` gem, do:
* <http://lists.w3.org/Archives/Public/public-rdf-ruby/>

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

## Contributing
* Do your best to adhere to the existing coding conventions and idioms.
Expand Down Expand Up @@ -132,5 +132,5 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
[Backports]: http://rubygems.org/gems/backports
[N-Triples]: http://www.w3.org/TR/rdf-testcases/#ntriples
[Turtle]: http://www.w3.org/TR/2011/WD-turtle-20110809/
[Turtle doc]: http://rubydoc.info/github/gkellogg/rdf-turtle/master/file/README.markdown
[Turtle doc]: http://rubydoc.info/github/ruby-rdf/rdf-turtle/master/file/README.markdown
[Turtle EBNF]: http://www.w3.org/TR/2011/WD-turtle-20110809/turtle.bnf
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.1.2
4 changes: 2 additions & 2 deletions etc/doap.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<> a doap:Project ;
doap:name "RDF::Turtle" ;
doap:homepage <http://github.com/gkellogg/rdf-turtle> ;
doap:homepage <http://github.com/ruby-rdf/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 ;
Expand All @@ -20,7 +20,7 @@
<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/gkellogg/rdf-turtle/issues> ;
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> ;
Expand Down
4 changes: 2 additions & 2 deletions lib/rdf/turtle.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ module RDF
# end
# end
#
# @see http://rubydoc.info/github/gkellogg/rdf/master/frames
# @see http://rubydoc.info/github/ruby-rdf/rdf/master/frames
# @see http://dvcs.w3.org/hg/rdf/raw-file/default/rdf-turtle/index.html
#
# @author [Gregg Kellogg](http://kellogg-assoc.com/)
# @author [Gregg Kellogg](http://greggkellogg.net/)
module Turtle
require 'rdf/turtle/format'
autoload :Reader, 'rdf/turtle/reader'
Expand Down
2 changes: 1 addition & 1 deletion lib/rdf/turtle/writer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module RDF::Turtle
# end
# end
#
# @author [Gregg Kellogg](http://kellogg-assoc.com/)
# @author [Gregg Kellogg](http://greggkellogg.net/)
class Writer < RDF::Writer
format RDF::Turtle::Format

Expand Down
2 changes: 1 addition & 1 deletion rdf-turtle.gemspec
100644 → 100755
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 = "rdf-turtle"
gem.homepage = "http://github.com/gkellogg/rdf-turtle"
gem.homepage = "http://github.com/ruby-rdf/rdf-turtle"
gem.license = 'Public Domain' if gem.respond_to?(:license=)
gem.summary = "Turtle reader/writer for Ruby."
gem.description = %q{RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite.}
Expand Down

0 comments on commit 1579472

Please sign in to comment.