rdf-spec 1.1.0.p1 → 1.1.0.p2
Sign up to get free protection for your applications and to get access to all the features.
- data/AUTHORS +1 -1
- data/README +25 -16
- data/VERSION +1 -1
- data/etc/bendiken.nq +8 -8
- data/etc/bhuga.nq +6 -6
- data/etc/doap.nt +39 -39
- data/etc/gkellogg.nq +6 -5
- data/etc/quads.nq +95 -0
- data/etc/test-data.nt +0 -1
- data/etc/{doap.nq → triples.nt} +76 -73
- data/lib/rdf/spec.rb +20 -0
- data/lib/rdf/spec/countable.rb +21 -26
- data/lib/rdf/spec/durable.rb +8 -12
- data/lib/rdf/spec/enumerable.rb +245 -297
- data/lib/rdf/spec/format.rb +3 -2
- data/lib/rdf/spec/indexable.rb +6 -13
- data/lib/rdf/spec/mutable.rb +84 -81
- data/lib/rdf/spec/queryable.rb +109 -144
- data/lib/rdf/spec/readable.rb +3 -7
- data/lib/rdf/spec/repository.rb +15 -26
- data/lib/rdf/spec/writable.rb +68 -55
- metadata +15 -13
- checksums.yaml +0 -15
- data/etc/bendiken.nt +0 -8
- data/etc/bendiken.ttl +0 -17
- data/etc/bhuga.nt +0 -6
- data/etc/bhuga.ttl +0 -15
- data/etc/doap.ttl +0 -79
- data/etc/gkellogg.nt +0 -5
- data/etc/gkellogg.ttl +0 -14
data/AUTHORS
CHANGED
data/README
CHANGED
@@ -1,33 +1,45 @@
|
|
1
|
-
RSpec Extensions for RDF.rb
|
2
|
-
===========================
|
1
|
+
# RSpec Extensions for RDF.rb
|
3
2
|
|
4
3
|
This is an [RDF.rb][] plugin that provides RDF-specific [RSpec][] matchers
|
5
4
|
and shared examples for Ruby projects that use RDF.rb and RSpec.
|
6
5
|
|
7
6
|
* <http://github.com/ruby-rdf/rdf-spec>
|
8
7
|
|
9
|
-
|
10
|
-
|
8
|
+
[![Gem Version](https://badge.fury.io/rb/rdf-spec.png)](http://badge.fury.io/rb/rdf-spec)
|
9
|
+
|
10
|
+
## Documentation
|
11
11
|
|
12
12
|
* {RDF::Spec}
|
13
13
|
* {RDF::Spec::Matchers}
|
14
14
|
|
15
|
-
|
16
|
-
|
15
|
+
Shared specs are implemented in modules which typically require that an instance be defined in a class variable in a `before(:each)` block. For example, an class implementing `RDF::Countable` could test this behavior by defining `@countable` as an instance variable and including `RDF_Countable` as follows:
|
16
|
+
|
17
|
+
describe RDF::Enumerable do
|
18
|
+
before :each do
|
19
|
+
# The available reference implementations are `RDF::Repository` and
|
20
|
+
# `RDF::Graph`, but a plain Ruby array will do fine as well:
|
21
|
+
@enumerable = RDF::Spec.quads.dup.extend(RDF::Enumerable)
|
22
|
+
end
|
23
|
+
|
24
|
+
# @see lib/rdf/spec/enumerable.rb in rdf-spec
|
25
|
+
include RDF_Enumerable
|
26
|
+
end
|
27
|
+
|
28
|
+
Note that in most cases, if the instance is empty and mutable, the appropriate statements will be added. When testing a non-mutable instance, the data must be pre-loaded.
|
29
|
+
|
30
|
+
## Dependencies
|
17
31
|
|
18
32
|
* [RDF.rb](http://rubygems.org/gems/rdf) (>= 0.3.1)
|
19
33
|
* [RSpec](http://rubygems.org/gems/rspec) (>= 2.1.0)
|
20
34
|
|
21
|
-
Installation
|
22
|
-
------------
|
35
|
+
## Installation
|
23
36
|
|
24
37
|
The recommended installation method is via [RubyGems](http://rubygems.org/).
|
25
38
|
To install the latest official release of the `RDF::Spec` gem, do:
|
26
39
|
|
27
40
|
% [sudo] gem install rdf-spec
|
28
41
|
|
29
|
-
Download
|
30
|
-
--------
|
42
|
+
## Download
|
31
43
|
|
32
44
|
To get a local working copy of the development repository, do:
|
33
45
|
|
@@ -38,20 +50,17 @@ follows:
|
|
38
50
|
|
39
51
|
% wget http://github.com/ruby-rdf/rdf-spec/tarball/master
|
40
52
|
|
41
|
-
Authors
|
42
|
-
-------
|
53
|
+
## Authors
|
43
54
|
|
44
55
|
* [Arto Bendiken](http://github.com/bendiken) - <http://ar.to/>
|
45
56
|
* [Ben Lavender](http://github.com/bhuga) - <http://bhuga.net/>
|
46
57
|
* [Gregg Kellogg](http://github.com/gkellogg) - <http://greggkellogg.net/>
|
47
58
|
|
48
|
-
Contributors
|
49
|
-
------------
|
59
|
+
## Contributors
|
50
60
|
|
51
61
|
* [John Fieber](http://github.com/jfieber) - <http://github.com/jfieber>
|
52
62
|
|
53
|
-
Contributing
|
54
|
-
------------
|
63
|
+
## Contributing
|
55
64
|
|
56
65
|
* Do your best to adhere to the existing coding conventions and idioms.
|
57
66
|
* Don't use hard tabs, and don't leave trailing whitespace on any line.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.0.
|
1
|
+
1.1.0.p2
|
data/etc/bendiken.nq
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
<http://ar.to/#self> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person>
|
2
|
-
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/name> "Arto Bendiken"
|
3
|
-
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox> <mailto:arto
|
4
|
-
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "
|
5
|
-
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "
|
6
|
-
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/homepage> <http://ar.to/>
|
7
|
-
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/made> <http://rubygems.org/gems/rdf>
|
8
|
-
<http://ar.to/#self> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://datagraph.org/bendiken/foaf>
|
1
|
+
<http://ar.to/#self> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://ar.to/#self> .
|
2
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/name> "Arto Bendiken" <http://ar.to/#self> .
|
3
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox> <mailto:arto@bendiken.net> <http://ar.to/#self> .
|
4
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "a033f652c84a4d73b8c26d318c2395699dd2bdfb" <http://ar.to/#self> .
|
5
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "d0737cceb55eb7d740578d2db1bc0727e3ed49ce" <http://ar.to/#self> .
|
6
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/homepage> <http://ar.to/> <http://ar.to/#self> .
|
7
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/made> <http://rubygems.org/gems/rdf> <http://ar.to/#self> .
|
8
|
+
<http://ar.to/#self> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://datagraph.org/bendiken/foaf> <http://ar.to/#self> .
|
data/etc/bhuga.nq
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
<http://bhuga.net/#ben> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person>
|
2
|
-
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/name> "Ben Lavender"
|
3
|
-
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/mbox> <mailto:blavender@gmail.com>
|
4
|
-
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "dbf45f4ffbd27b67aa84f02a6a31c144727d10af"
|
5
|
-
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/homepage> <http://bhuga.net/>
|
6
|
-
<http://bhuga.net/#ben> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://datagraph.org/bhuga/foaf>
|
1
|
+
<http://bhuga.net/#ben> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://bhuga.net/#ben> .
|
2
|
+
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/name> "Ben Lavender" <http://bhuga.net/#ben> .
|
3
|
+
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/mbox> <mailto:blavender@gmail.com> <http://bhuga.net/#ben> .
|
4
|
+
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "dbf45f4ffbd27b67aa84f02a6a31c144727d10af" <http://bhuga.net/#ben> .
|
5
|
+
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/homepage> <http://bhuga.net/> <http://bhuga.net/#ben> .
|
6
|
+
<http://bhuga.net/#ben> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://datagraph.org/bhuga/foaf> <http://bhuga.net/#ben> .
|
data/etc/doap.nt
CHANGED
@@ -1,3 +1,30 @@
|
|
1
|
+
_:g70121455598020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
2
|
+
_:g70121455598020 <http://xmlns.com/foaf/0.1/name> "Călin Ardelean" .
|
3
|
+
_:g70121455598020 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "274bd18402fc773ffc0606996aa1fb90b603aa29" .
|
4
|
+
_:g70121455987740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
5
|
+
_:g70121455987740 <http://xmlns.com/foaf/0.1/name> "Danny Gagne" .
|
6
|
+
_:g70121455987740 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "6de43e9cf7de53427fea9765706703e4d957c17b" .
|
7
|
+
_:g70121456043480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
8
|
+
_:g70121456043480 <http://xmlns.com/foaf/0.1/name> "Joey Geiger" .
|
9
|
+
_:g70121456043480 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "f412d743150d7b27b8468d56e69ca147917ea6fc" .
|
10
|
+
_:g70121454985220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
11
|
+
_:g70121454985220 <http://xmlns.com/foaf/0.1/name> "Fumihiro Kato" .
|
12
|
+
_:g70121454985220 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "d31fdd6af7a279a89bf09fdc9f7c44d9d08bb930" .
|
13
|
+
_:g70121453351420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
14
|
+
_:g70121453351420 <http://xmlns.com/foaf/0.1/name> "Naoki Kawamukai" .
|
15
|
+
_:g70121453351420 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "5bdcd8e2af4f5952aaeeffbdd371c41525ec761d" .
|
16
|
+
_:g70121454019540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
17
|
+
_:g70121454019540 <http://xmlns.com/foaf/0.1/name> "Hellekin O. Wolf" .
|
18
|
+
_:g70121454019540 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "c69f3255ff0639543cc5edfd8116eac8df16fab8" .
|
19
|
+
_:g70121453695240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
20
|
+
_:g70121453695240 <http://xmlns.com/foaf/0.1/name> "John Fieber" .
|
21
|
+
_:g70121453695240 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "f7653fc1ac0e82ebb32f092389bd5fc728eaae12" .
|
22
|
+
_:g70121455747720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
23
|
+
_:g70121455747720 <http://xmlns.com/foaf/0.1/name> "Keita Urashima" .
|
24
|
+
_:g70121455747720 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "2b4247b6fd5bb4a1383378f325784318680d5ff9" .
|
25
|
+
_:g70121455472480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
26
|
+
_:g70121455472480 <http://xmlns.com/foaf/0.1/name> "Pius Uzamere" .
|
27
|
+
_:g70121455472480 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "bedbbf2451e5beb38d59687c0460032aff92cd3c" .
|
1
28
|
<http://rubygems.org/gems/rdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
|
2
29
|
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#name> "RDF.rb" .
|
3
30
|
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#homepage> <http://rubygems.org/gems/rdf> .
|
@@ -25,49 +52,22 @@
|
|
25
52
|
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#documenter> <http://ar.to/#self> .
|
26
53
|
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#documenter> <http://bhuga.net/#ben> .
|
27
54
|
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#documenter> <http://greggkellogg.net/foaf#me> .
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:
|
36
|
-
|
37
|
-
_:g2171208180 <http://xmlns.com/foaf/0.1/name> "Joey Geiger" .
|
38
|
-
_:g2171208180 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "f412d743150d7b27b8468d56e69ca147917ea6fc" .
|
39
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g2171208180 .
|
40
|
-
_:g2171159320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
41
|
-
_:g2171159320 <http://xmlns.com/foaf/0.1/name> "Fumihiro Kato" .
|
42
|
-
_:g2171159320 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "d31fdd6af7a279a89bf09fdc9f7c44d9d08bb930" .
|
43
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g2171159320 .
|
44
|
-
_:g2171110460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
45
|
-
_:g2171110460 <http://xmlns.com/foaf/0.1/name> "Naoki Kawamukai" .
|
46
|
-
_:g2171110460 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "5bdcd8e2af4f5952aaeeffbdd371c41525ec761d" .
|
47
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g2171110460 .
|
48
|
-
_:g2171061600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
49
|
-
_:g2171061600 <http://xmlns.com/foaf/0.1/name> "Hellekin O. Wolf" .
|
50
|
-
_:g2171061600 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "c69f3255ff0639543cc5edfd8116eac8df16fab8" .
|
51
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g2171061600 .
|
52
|
-
_:g2171012740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
53
|
-
_:g2171012740 <http://xmlns.com/foaf/0.1/name> "John Fieber" .
|
54
|
-
_:g2171012740 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "f7653fc1ac0e82ebb32f092389bd5fc728eaae12" .
|
55
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g2171012740 .
|
56
|
-
_:g2170963880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
57
|
-
_:g2170963880 <http://xmlns.com/foaf/0.1/name> "Keita Urashima" .
|
58
|
-
_:g2170963880 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "2b4247b6fd5bb4a1383378f325784318680d5ff9" .
|
59
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g2170963880 .
|
60
|
-
_:g2173836940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
61
|
-
_:g2173836940 <http://xmlns.com/foaf/0.1/name> "Pius Uzamere" .
|
62
|
-
_:g2173836940 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "bedbbf2451e5beb38d59687c0460032aff92cd3c" .
|
63
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g2173836940 .
|
55
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121455598020 .
|
56
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121455987740 .
|
57
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121456043480 .
|
58
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121454985220 .
|
59
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121453351420 .
|
60
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121454019540 .
|
61
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121453695240 .
|
62
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121455747720 .
|
63
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121455472480 .
|
64
64
|
<http://rubygems.org/gems/rdf> <http://xmlns.com/foaf/0.1/maker> <http://ar.to/#self> .
|
65
65
|
<http://rubygems.org/gems/rdf> <http://purl.org/dc/terms/creator> <http://ar.to/#self> .
|
66
66
|
<http://ar.to/#self> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
67
67
|
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/name> "Arto Bendiken" .
|
68
|
-
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox> <mailto:arto
|
69
|
-
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "d0737cceb55eb7d740578d2db1bc0727e3ed49ce" .
|
68
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox> <mailto:arto@bendiken.net> .
|
70
69
|
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "a033f652c84a4d73b8c26d318c2395699dd2bdfb" .
|
70
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "d0737cceb55eb7d740578d2db1bc0727e3ed49ce" .
|
71
71
|
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/homepage> <http://ar.to/> .
|
72
72
|
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/made> <http://rubygems.org/gems/rdf> .
|
73
73
|
<http://ar.to/#self> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://datagraph.org/bendiken/foaf> .
|
@@ -79,7 +79,7 @@ _:g2173836940 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "bedbbf2451e5beb38d59687c
|
|
79
79
|
<http://bhuga.net/#ben> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://datagraph.org/bhuga/foaf> .
|
80
80
|
<http://greggkellogg.net/foaf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
81
81
|
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/name> "Gregg Kellogg" .
|
82
|
-
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox> <mailto:gregg@
|
82
|
+
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox> <mailto:gregg@greggkellogg.net> .
|
83
83
|
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "35bc44e6d0070e5ad50ccbe0d24403c96af2b9bd" .
|
84
84
|
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/homepage> <http://greggkellogg.net/> .
|
85
85
|
<http://greggkellogg.net/foaf#me> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://greggkellogg.net/foaf> .
|
data/etc/gkellogg.nq
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
-
<http://greggkellogg.net
|
2
|
-
<http://greggkellogg.net
|
3
|
-
<http://greggkellogg.net
|
4
|
-
<http://greggkellogg.net
|
5
|
-
<http://greggkellogg.net
|
1
|
+
<http://greggkellogg.net/foaf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://greggkellogg.net/foaf#me> .
|
2
|
+
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/name> "Gregg Kellogg" <http://greggkellogg.net/foaf#me> .
|
3
|
+
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox> <mailto:gregg@greggkellogg.net> <http://greggkellogg.net/foaf#me> .
|
4
|
+
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "35bc44e6d0070e5ad50ccbe0d24403c96af2b9bd" <http://greggkellogg.net/foaf#me> .
|
5
|
+
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/homepage> <http://greggkellogg.net/> <http://greggkellogg.net/foaf#me> .
|
6
|
+
<http://greggkellogg.net/foaf#me> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://greggkellogg.net/foaf> <http://greggkellogg.net/foaf#me> .
|
data/etc/quads.nq
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
_:g70121455598020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
2
|
+
_:g70121455598020 <http://xmlns.com/foaf/0.1/name> "Călin Ardelean" .
|
3
|
+
_:g70121455598020 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "274bd18402fc773ffc0606996aa1fb90b603aa29" .
|
4
|
+
_:g70121455987740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
5
|
+
_:g70121455987740 <http://xmlns.com/foaf/0.1/name> "Danny Gagne" .
|
6
|
+
_:g70121455987740 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "6de43e9cf7de53427fea9765706703e4d957c17b" .
|
7
|
+
_:g70121456043480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
8
|
+
_:g70121456043480 <http://xmlns.com/foaf/0.1/name> "Joey Geiger" .
|
9
|
+
_:g70121456043480 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "f412d743150d7b27b8468d56e69ca147917ea6fc" .
|
10
|
+
_:g70121454985220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
11
|
+
_:g70121454985220 <http://xmlns.com/foaf/0.1/name> "Fumihiro Kato" .
|
12
|
+
_:g70121454985220 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "d31fdd6af7a279a89bf09fdc9f7c44d9d08bb930" .
|
13
|
+
_:g70121453351420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
14
|
+
_:g70121453351420 <http://xmlns.com/foaf/0.1/name> "Naoki Kawamukai" .
|
15
|
+
_:g70121453351420 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "5bdcd8e2af4f5952aaeeffbdd371c41525ec761d" .
|
16
|
+
_:g70121454019540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
17
|
+
_:g70121454019540 <http://xmlns.com/foaf/0.1/name> "Hellekin O. Wolf" .
|
18
|
+
_:g70121454019540 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "c69f3255ff0639543cc5edfd8116eac8df16fab8" .
|
19
|
+
_:g70121453695240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
20
|
+
_:g70121453695240 <http://xmlns.com/foaf/0.1/name> "John Fieber" .
|
21
|
+
_:g70121453695240 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "f7653fc1ac0e82ebb32f092389bd5fc728eaae12" .
|
22
|
+
_:g70121455747720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
23
|
+
_:g70121455747720 <http://xmlns.com/foaf/0.1/name> "Keita Urashima" .
|
24
|
+
_:g70121455747720 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "2b4247b6fd5bb4a1383378f325784318680d5ff9" .
|
25
|
+
_:g70121455472480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
26
|
+
_:g70121455472480 <http://xmlns.com/foaf/0.1/name> "Pius Uzamere" .
|
27
|
+
_:g70121455472480 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "bedbbf2451e5beb38d59687c0460032aff92cd3c" .
|
28
|
+
<http://rubygems.org/gems/rdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
|
29
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#name> "RDF.rb" .
|
30
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#homepage> <http://rubygems.org/gems/rdf> .
|
31
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#license> <http://creativecommons.org/licenses/publicdomain/> .
|
32
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#shortdesc> "A Ruby library for working with Resource Description Framework (RDF) data."@en .
|
33
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#description> "RDF.rb is a pure-Ruby library for working with Resource Description Framework (RDF) data."@en .
|
34
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#created> "2007-10-23" .
|
35
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#platform> "Ruby" .
|
36
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Resource_Description_Framework> .
|
37
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Ruby_(programming_language)> .
|
38
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/rdf-concepts/> .
|
39
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#implements> <http://sw.deri.org/2008/07/n-quads/> .
|
40
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/2001/sw/RDFCore/ntriples/> .
|
41
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#download-page> <http://rubyforge.org/projects/rdf/> .
|
42
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#bug-database> <http://github.com/ruby-rdf/rdf/issues> .
|
43
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#blog> <http://ar.to/> .
|
44
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#blog> <http://blog.datagraph.org/> .
|
45
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#vendor> <http://datagraph.org/> .
|
46
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#developer> <http://ar.to/#self> .
|
47
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#developer> <http://bhuga.net/#ben> .
|
48
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#developer> <http://greggkellogg.net/foaf#me> .
|
49
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#maintainer> <http://ar.to/#self> .
|
50
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#maintainer> <http://bhuga.net/#ben> .
|
51
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#maintainer> <http://greggkellogg.net/foaf#me> .
|
52
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#documenter> <http://ar.to/#self> .
|
53
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#documenter> <http://bhuga.net/#ben> .
|
54
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#documenter> <http://greggkellogg.net/foaf#me> .
|
55
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121455598020 .
|
56
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121455987740 .
|
57
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121456043480 .
|
58
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121454985220 .
|
59
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121453351420 .
|
60
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121454019540 .
|
61
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121453695240 .
|
62
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121455747720 .
|
63
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121455472480 .
|
64
|
+
<http://rubygems.org/gems/rdf> <http://xmlns.com/foaf/0.1/maker> <http://ar.to/#self> .
|
65
|
+
<http://rubygems.org/gems/rdf> <http://purl.org/dc/terms/creator> <http://ar.to/#self> .
|
66
|
+
<http://ar.to/#self> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://ar.to/#self> .
|
67
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/name> "Arto Bendiken" <http://ar.to/#self> .
|
68
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox> <mailto:arto@bendiken.net> <http://ar.to/#self> .
|
69
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "a033f652c84a4d73b8c26d318c2395699dd2bdfb" <http://ar.to/#self> .
|
70
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "d0737cceb55eb7d740578d2db1bc0727e3ed49ce" <http://ar.to/#self> .
|
71
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/homepage> <http://ar.to/> <http://ar.to/#self> .
|
72
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/made> <http://rubygems.org/gems/rdf> <http://ar.to/#self> .
|
73
|
+
<http://ar.to/#self> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://datagraph.org/bendiken/foaf> <http://ar.to/#self> .
|
74
|
+
<http://bhuga.net/#ben> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://bhuga.net/#ben> .
|
75
|
+
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/name> "Ben Lavender" <http://bhuga.net/#ben> .
|
76
|
+
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/mbox> <mailto:blavender@gmail.com> <http://bhuga.net/#ben> .
|
77
|
+
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "dbf45f4ffbd27b67aa84f02a6a31c144727d10af" <http://bhuga.net/#ben> .
|
78
|
+
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/homepage> <http://bhuga.net/> <http://bhuga.net/#ben> .
|
79
|
+
<http://bhuga.net/#ben> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://datagraph.org/bhuga/foaf> <http://bhuga.net/#ben> .
|
80
|
+
<http://greggkellogg.net/foaf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://greggkellogg.net/foaf#me> .
|
81
|
+
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/name> "Gregg Kellogg" <http://greggkellogg.net/foaf#me> .
|
82
|
+
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox> <mailto:gregg@greggkellogg.net> <http://greggkellogg.net/foaf#me> .
|
83
|
+
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "35bc44e6d0070e5ad50ccbe0d24403c96af2b9bd" <http://greggkellogg.net/foaf#me> .
|
84
|
+
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/homepage> <http://greggkellogg.net/> <http://greggkellogg.net/foaf#me> .
|
85
|
+
<http://greggkellogg.net/foaf#me> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://greggkellogg.net/foaf> <http://greggkellogg.net/foaf#me> .
|
86
|
+
<http://example.org/xi1> <http://example.org/p> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
|
87
|
+
<http://example.org/xi2> <http://example.org/p> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
|
88
|
+
<http://example.org/xi3> <http://example.org/p> "01"^^<http://www.w3.org/2001/XMLSchema#integer> .
|
89
|
+
<http://example.org/xd1> <http://example.org/p> "1.0e0"^^<http://www.w3.org/2001/XMLSchema#double> .
|
90
|
+
<http://example.org/xd2> <http://example.org/p> "1.0"^^<http://www.w3.org/2001/XMLSchema#double> .
|
91
|
+
<http://example.org/xd3> <http://example.org/p> "1"^^<http://www.w3.org/2001/XMLSchema#double> .
|
92
|
+
<http://example.org/xt1> <http://example.org/p> "zzz"^^<http://example.org/myType> .
|
93
|
+
<http://example.org/xp1> <http://example.org/p> "zzz" .
|
94
|
+
<http://example.org/xp2> <http://example.org/p> "1" .
|
95
|
+
<http://example.org/xu> <http://example.org/p> <http://example.org/z> .
|
data/etc/test-data.nt
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
# Test data from SPARQLdata-r2/expr-equals
|
2
1
|
<http://example.org/xi1> <http://example.org/p> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
|
3
2
|
<http://example.org/xi2> <http://example.org/p> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
|
4
3
|
<http://example.org/xi3> <http://example.org/p> "01"^^<http://www.w3.org/2001/XMLSchema#integer> .
|
data/etc/{doap.nq → triples.nt}
RENAMED
@@ -1,85 +1,88 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
<http://
|
5
|
-
|
6
|
-
|
7
|
-
<http://
|
8
|
-
|
9
|
-
|
10
|
-
<http://
|
11
|
-
|
12
|
-
|
13
|
-
<http://
|
14
|
-
|
15
|
-
|
16
|
-
<http://
|
17
|
-
|
18
|
-
|
19
|
-
<http://
|
20
|
-
<http://
|
21
|
-
<http://
|
22
|
-
<http://
|
23
|
-
|
1
|
+
_:g70121455598020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
2
|
+
_:g70121455598020 <http://xmlns.com/foaf/0.1/name> "Călin Ardelean" .
|
3
|
+
_:g70121455598020 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "274bd18402fc773ffc0606996aa1fb90b603aa29" .
|
4
|
+
_:g70121455987740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
5
|
+
_:g70121455987740 <http://xmlns.com/foaf/0.1/name> "Danny Gagne" .
|
6
|
+
_:g70121455987740 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "6de43e9cf7de53427fea9765706703e4d957c17b" .
|
7
|
+
_:g70121456043480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
8
|
+
_:g70121456043480 <http://xmlns.com/foaf/0.1/name> "Joey Geiger" .
|
9
|
+
_:g70121456043480 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "f412d743150d7b27b8468d56e69ca147917ea6fc" .
|
10
|
+
_:g70121454985220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
11
|
+
_:g70121454985220 <http://xmlns.com/foaf/0.1/name> "Fumihiro Kato" .
|
12
|
+
_:g70121454985220 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "d31fdd6af7a279a89bf09fdc9f7c44d9d08bb930" .
|
13
|
+
_:g70121453351420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
14
|
+
_:g70121453351420 <http://xmlns.com/foaf/0.1/name> "Naoki Kawamukai" .
|
15
|
+
_:g70121453351420 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "5bdcd8e2af4f5952aaeeffbdd371c41525ec761d" .
|
16
|
+
_:g70121454019540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
17
|
+
_:g70121454019540 <http://xmlns.com/foaf/0.1/name> "Hellekin O. Wolf" .
|
18
|
+
_:g70121454019540 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "c69f3255ff0639543cc5edfd8116eac8df16fab8" .
|
19
|
+
_:g70121453695240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
20
|
+
_:g70121453695240 <http://xmlns.com/foaf/0.1/name> "John Fieber" .
|
21
|
+
_:g70121453695240 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "f7653fc1ac0e82ebb32f092389bd5fc728eaae12" .
|
22
|
+
_:g70121455747720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
23
|
+
_:g70121455747720 <http://xmlns.com/foaf/0.1/name> "Keita Urashima" .
|
24
|
+
_:g70121455747720 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "2b4247b6fd5bb4a1383378f325784318680d5ff9" .
|
25
|
+
_:g70121455472480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
26
|
+
_:g70121455472480 <http://xmlns.com/foaf/0.1/name> "Pius Uzamere" .
|
27
|
+
_:g70121455472480 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "bedbbf2451e5beb38d59687c0460032aff92cd3c" .
|
28
|
+
<http://rubygems.org/gems/rdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
|
29
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#name> "RDF.rb" .
|
30
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#homepage> <http://rubygems.org/gems/rdf> .
|
31
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#license> <http://creativecommons.org/licenses/publicdomain/> .
|
32
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#shortdesc> "A Ruby library for working with Resource Description Framework (RDF) data."@en .
|
33
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#description> "RDF.rb is a pure-Ruby library for working with Resource Description Framework (RDF) data."@en .
|
34
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#created> "2007-10-23" .
|
35
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#platform> "Ruby" .
|
24
36
|
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Resource_Description_Framework> .
|
25
37
|
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Ruby_(programming_language)> .
|
26
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#
|
27
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#
|
38
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/TR/rdf-concepts/> .
|
39
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#implements> <http://sw.deri.org/2008/07/n-quads/> .
|
40
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#implements> <http://www.w3.org/2001/sw/RDFCore/ntriples/> .
|
41
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#download-page> <http://rubyforge.org/projects/rdf/> .
|
42
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#bug-database> <http://github.com/ruby-rdf/rdf/issues> .
|
43
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#blog> <http://ar.to/> .
|
44
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#blog> <http://blog.datagraph.org/> .
|
45
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#vendor> <http://datagraph.org/> .
|
28
46
|
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#developer> <http://ar.to/#self> .
|
29
47
|
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#developer> <http://bhuga.net/#ben> .
|
30
48
|
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#developer> <http://greggkellogg.net/foaf#me> .
|
31
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#documenter> <http://ar.to/#self> .
|
32
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#documenter> <http://bhuga.net/#ben> .
|
33
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#documenter> <http://greggkellogg.net/foaf#me> .
|
34
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#download-page> <http://rubyforge.org/projects/rdf/> .
|
35
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:genid1 .
|
36
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:genid2 .
|
37
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:genid3 .
|
38
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:genid4 .
|
39
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:genid5 .
|
40
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:genid6 .
|
41
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:genid7 .
|
42
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:genid8 .
|
43
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:genid9 .
|
44
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#homepage> <http://rubygems.org/gems/rdf> .
|
45
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#license> <http://creativecommons.org/licenses/publicdomain/> .
|
46
49
|
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#maintainer> <http://ar.to/#self> .
|
47
50
|
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#maintainer> <http://bhuga.net/#ben> .
|
48
51
|
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#maintainer> <http://greggkellogg.net/foaf#me> .
|
49
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#
|
50
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#
|
51
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#
|
52
|
-
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#
|
53
|
-
<http://rubygems.org/gems/rdf> <http://
|
52
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#documenter> <http://ar.to/#self> .
|
53
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#documenter> <http://bhuga.net/#ben> .
|
54
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#documenter> <http://greggkellogg.net/foaf#me> .
|
55
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121455598020 .
|
56
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121455987740 .
|
57
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121456043480 .
|
58
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121454985220 .
|
59
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121453351420 .
|
60
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121454019540 .
|
61
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121453695240 .
|
62
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121455747720 .
|
63
|
+
<http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:g70121455472480 .
|
54
64
|
<http://rubygems.org/gems/rdf> <http://xmlns.com/foaf/0.1/maker> <http://ar.to/#self> .
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
_:genid8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
77
|
-
_:genid8 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "2b4247b6fd5bb4a1383378f325784318680d5ff9" .
|
78
|
-
_:genid8 <http://xmlns.com/foaf/0.1/name> "Keita Urashima" .
|
79
|
-
_:genid9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
80
|
-
_:genid9 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "bedbbf2451e5beb38d59687c0460032aff92cd3c" .
|
81
|
-
_:genid9 <http://xmlns.com/foaf/0.1/name> "Pius Uzamere" .
|
82
|
-
# Test data from SPARQLdata-r2/expr-equals
|
65
|
+
<http://rubygems.org/gems/rdf> <http://purl.org/dc/terms/creator> <http://ar.to/#self> .
|
66
|
+
<http://ar.to/#self> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
67
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/name> "Arto Bendiken" .
|
68
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox> <mailto:arto@bendiken.net> .
|
69
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "a033f652c84a4d73b8c26d318c2395699dd2bdfb" .
|
70
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "d0737cceb55eb7d740578d2db1bc0727e3ed49ce" .
|
71
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/homepage> <http://ar.to/> .
|
72
|
+
<http://ar.to/#self> <http://xmlns.com/foaf/0.1/made> <http://rubygems.org/gems/rdf> .
|
73
|
+
<http://ar.to/#self> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://datagraph.org/bendiken/foaf> .
|
74
|
+
<http://bhuga.net/#ben> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
75
|
+
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/name> "Ben Lavender" .
|
76
|
+
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/mbox> <mailto:blavender@gmail.com> .
|
77
|
+
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "dbf45f4ffbd27b67aa84f02a6a31c144727d10af" .
|
78
|
+
<http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/homepage> <http://bhuga.net/> .
|
79
|
+
<http://bhuga.net/#ben> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://datagraph.org/bhuga/foaf> .
|
80
|
+
<http://greggkellogg.net/foaf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
|
81
|
+
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/name> "Gregg Kellogg" .
|
82
|
+
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox> <mailto:gregg@greggkellogg.net> .
|
83
|
+
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "35bc44e6d0070e5ad50ccbe0d24403c96af2b9bd" .
|
84
|
+
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/homepage> <http://greggkellogg.net/> .
|
85
|
+
<http://greggkellogg.net/foaf#me> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://greggkellogg.net/foaf> .
|
83
86
|
<http://example.org/xi1> <http://example.org/p> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
|
84
87
|
<http://example.org/xi2> <http://example.org/p> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
|
85
88
|
<http://example.org/xi3> <http://example.org/p> "01"^^<http://www.w3.org/2001/XMLSchema#integer> .
|