Skip to content

Commit

Permalink
Version 0.1.3. 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 770b0c1 commit b996430
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 17 deletions.
2 changes: 1 addition & 1 deletion AUTHORS
@@ -1 +1 @@
* Gregg Kellogg <gregg@kellogg-assoc.com>
* Gregg Kellogg <gregg@greggkellogg.net>
4 changes: 2 additions & 2 deletions README.markdown
Expand Up @@ -71,7 +71,7 @@ To install the latest official release of the `RDF::TriG` 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 @@ -100,4 +100,4 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
[TriG]: http://dvcs.w3.org/hg/rdf/raw-file/default/trig/index.html
[TriG doc]: http://rubydoc.info/github/gkellogg/rdf-trig/master/file/README.markdown
[TriG EBNF]: http://dvcs.w3.org/hg/rdf/raw-file/default/trig/trig.bnf
[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
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.1.2
0.1.3
21 changes: 11 additions & 10 deletions etc/doap.trig
Expand Up @@ -5,9 +5,9 @@
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

{
<https://github.com/gkellogg/rdf-trig> a doap:GitRepository;
dc:title "rdf-trig";
doap:browse <https://github.com/gkellogg/rdf-trig> .
<https://github.com/ruby-rdf/rdf-trig> a doap:GitRepository;
dc:title "RDF::TriG";
doap:browse <https://github.com/ruby-rdf/rdf-trig> .

<http://rubygems.org/gems/rdf-trig> a doap:Project;
dc:created "2011-12-22T09:53:17-08:00"^^xsd:dateTime;
Expand All @@ -16,18 +16,19 @@
doap:documenter <http://greggkellogg.net/foaf#me>;
foaf:maker <http://greggkellogg.net/foaf#me> ;
doap:maintainer <http://greggkellogg.net/foaf#me>;
doap:bug-database <https://github.com/gkellogg/rdf-trig/issues>;
doap:bug-database <https://github.com/ruby-rdf/rdf-trig/issues>;
doap:description "TriG reader/writer for RDF.rb";
doap:name "rdf-trig";
doap:shortdesc "TriG reader/writer for Ruby."@en;
doap:programming-language "Ruby";
doap:repository <https://github.com/gkellogg/rdf-trig>;
doap:repository <https://github.com/ruby-rdf/rdf-trig>;
doap:mailing-list <http://lists.w3.org/Archives/Public/public-rdf-ruby/>;
doap:implements <http://dvcs.w3.org/hg/rdf/raw-file/default/trig/index.html> ;
doap:category <http://dbpedia.org/resource/Resource_Description_Framework>,
<http://dbpedia.org/resource/Ruby_(programming_language)>;
doap:homepage <http://github.com/gkellogg/rdf-trig>;
doap:homepage <http://github.com/ruby-rdf/rdf-trig>;
doap:license <http://creativecommons.org/licenses/publicdomain/>;
doap:wiki <https://github.com/gkellogg/rdf-trig/wiki> .
doap:wiki <https://github.com/ruby-rdf/rdf-trig/wiki> .

<http://github.com/gkellogg> a foaf:OnlineAccount;
dc:created "2009-01-13T08:58:46-08:00"^^xsd:dateTime;
Expand All @@ -40,13 +41,13 @@

<http://greggkellogg.net/foaf#me> {
<http://greggkellogg.net/foaf#me> a foaf:Person;
foaf:mbox <mailto:gregg@kellogg-assoc.com>;
foaf:mbox <mailto:gregg@greggkellogg.net>;
foaf:mbox_sha1sum "35bc44e6d0070e5ad50ccbe0d24403c96af2b9bd";
foaf:name "Gregg Kellogg";
foaf:nick "gkellogg";
foaf:developer _:proj;
foaf:account <http://github.com/gkellogg>;
foaf:based_near "San Rafael, CA";
foaf:depiction <http://www.gravatar.com/avatar/42f948adff3afaa52249d963117af7c8>;
foaf:weblog <http://kellogg-assoc.com> .
}
foaf:weblog <http://greggkellogg.net> .
}
2 changes: 1 addition & 1 deletion lib/rdf/trig.rb
Expand Up @@ -18,7 +18,7 @@ module RDF
# @see http://rubydoc.info/github/gkellogg/rdf/master/frames
# @see http://dvcs.w3.org/hg/rdf/raw-file/default/trig/index.html
#
# @author [Gregg Kellogg](http://kellogg-assoc.com/)
# @author [Gregg Kellogg](http://greggkellogg.net/)
module TriG
require 'rdf/trig/format'
autoload :Reader, 'rdf/trig/reader'
Expand Down
2 changes: 1 addition & 1 deletion lib/rdf/trig/writer.rb
Expand Up @@ -46,7 +46,7 @@ module RDF::TriG
# end
# end
#
# @author [Gregg Kellogg](http://kellogg-assoc.com/)
# @author [Gregg Kellogg](http://greggkellogg.net/)
class Writer < RDF::Turtle::Writer
format RDF::TriG::Format

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

gem.name = "rdf-trig"
gem.homepage = "http://github.com/gkellogg/rdf-trig"
gem.homepage = "http://github.com/ruby-rdf/rdf-trig"
gem.license = 'Public Domain' if gem.respond_to?(:license=)
gem.summary = "TriG reader/writer for Ruby."
gem.description = %q{RDF::TriG is an TriG reader/writer for the RDF.rb library suite.}
Expand Down

0 comments on commit b996430

Please sign in to comment.