Skip to content

Commit b996430

Browse files
committed
Version 0.1.3. Update github ownership links.
1 parent 770b0c1 commit b996430

File tree

7 files changed

+18
-17
lines changed

7 files changed

+18
-17
lines changed

AUTHORS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* Gregg Kellogg <gregg@kellogg-assoc.com>
1+
* Gregg Kellogg <gregg@greggkellogg.net>

README.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ To install the latest official release of the `RDF::TriG` gem, do:
7171
* <http://lists.w3.org/Archives/Public/public-rdf-ruby/>
7272

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

7676
## Contributing
7777
* Do your best to adhere to the existing coding conventions and idioms.
@@ -100,4 +100,4 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
100100
[TriG]: http://dvcs.w3.org/hg/rdf/raw-file/default/trig/index.html
101101
[TriG doc]: http://rubydoc.info/github/gkellogg/rdf-trig/master/file/README.markdown
102102
[TriG EBNF]: http://dvcs.w3.org/hg/rdf/raw-file/default/trig/trig.bnf
103-
[Turtle doc]: http://rubydoc.info/github/gkellogg/rdf-turtle/master/file/README.markdown
103+
[Turtle doc]: http://rubydoc.info/github/ruby-rdf/rdf-turtle/master/file/README.markdown

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.2
1+
0.1.3

etc/doap.trig

+11-10
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
66

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

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

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

4142
<http://greggkellogg.net/foaf#me> {
4243
<http://greggkellogg.net/foaf#me> a foaf:Person;
43-
foaf:mbox <mailto:gregg@kellogg-assoc.com>;
44+
foaf:mbox <mailto:gregg@greggkellogg.net>;
4445
foaf:mbox_sha1sum "35bc44e6d0070e5ad50ccbe0d24403c96af2b9bd";
4546
foaf:name "Gregg Kellogg";
4647
foaf:nick "gkellogg";
4748
foaf:developer _:proj;
4849
foaf:account <http://github.com/gkellogg>;
4950
foaf:based_near "San Rafael, CA";
5051
foaf:depiction <http://www.gravatar.com/avatar/42f948adff3afaa52249d963117af7c8>;
51-
foaf:weblog <http://kellogg-assoc.com> .
52-
}
52+
foaf:weblog <http://greggkellogg.net> .
53+
}

lib/rdf/trig.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module RDF
1818
# @see http://rubydoc.info/github/gkellogg/rdf/master/frames
1919
# @see http://dvcs.w3.org/hg/rdf/raw-file/default/trig/index.html
2020
#
21-
# @author [Gregg Kellogg](http://kellogg-assoc.com/)
21+
# @author [Gregg Kellogg](http://greggkellogg.net/)
2222
module TriG
2323
require 'rdf/trig/format'
2424
autoload :Reader, 'rdf/trig/reader'

lib/rdf/trig/writer.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ module RDF::TriG
4646
# end
4747
# end
4848
#
49-
# @author [Gregg Kellogg](http://kellogg-assoc.com/)
49+
# @author [Gregg Kellogg](http://greggkellogg.net/)
5050
class Writer < RDF::Turtle::Writer
5151
format RDF::TriG::Format
5252

rdf-trig.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Gem::Specification.new do |gem|
66
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
77

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

0 commit comments

Comments
 (0)