rdf-spec 1.0.9 → 1.1.0.p1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +14 -6
- data/AUTHORS +1 -1
- data/README +16 -23
- data/VERSION +1 -1
- data/etc/bendiken.nq +8 -8
- data/etc/bendiken.nt +8 -0
- data/etc/bendiken.ttl +17 -0
- data/etc/bhuga.nq +6 -6
- data/etc/bhuga.nt +6 -0
- data/etc/bhuga.ttl +15 -0
- data/etc/{triples.nt → doap.nq} +73 -76
- data/etc/doap.nt +39 -39
- data/etc/doap.ttl +79 -0
- data/etc/gkellogg.nq +5 -6
- data/etc/gkellogg.nt +5 -0
- data/etc/gkellogg.ttl +14 -0
- data/etc/test-data.nt +1 -0
- data/lib/rdf/spec.rb +0 -20
- data/lib/rdf/spec/countable.rb +26 -21
- data/lib/rdf/spec/durable.rb +13 -9
- data/lib/rdf/spec/enumerable.rb +314 -264
- data/lib/rdf/spec/format.rb +8 -9
- data/lib/rdf/spec/indexable.rb +13 -6
- data/lib/rdf/spec/matchers.rb +38 -38
- data/lib/rdf/spec/mutable.rb +81 -84
- data/lib/rdf/spec/queryable.rb +168 -195
- data/lib/rdf/spec/readable.rb +7 -3
- data/lib/rdf/spec/reader.rb +43 -43
- data/lib/rdf/spec/repository.rb +26 -15
- data/lib/rdf/spec/transaction.rb +90 -42
- data/lib/rdf/spec/writable.rb +55 -68
- data/lib/rdf/spec/writer.rb +36 -35
- data/spec/version_spec.rb +1 -1
- metadata +41 -34
- data/etc/quads.nq +0 -95
data/lib/rdf/spec/writer.rb
CHANGED
@@ -15,23 +15,23 @@ module RDF_Writer
|
|
15
15
|
describe ".each" do
|
16
16
|
it "yields each writer" do
|
17
17
|
@writer_class.each do |r|
|
18
|
-
|
18
|
+
r.should_not be_nil
|
19
19
|
end
|
20
20
|
end
|
21
21
|
end
|
22
22
|
|
23
23
|
describe ".buffer" do
|
24
24
|
it "calls .new with buffer and other arguments" do
|
25
|
-
|
25
|
+
@writer_class.should_receive(:new)
|
26
26
|
@writer_class.buffer do |r|
|
27
|
-
|
27
|
+
r.should be_a(@writer_class)
|
28
28
|
end
|
29
29
|
end
|
30
30
|
end
|
31
31
|
|
32
32
|
describe ".open" do
|
33
33
|
before(:each) do
|
34
|
-
RDF::Util::File.stub(:open_file).and_yield(StringIO.new("foo"))
|
34
|
+
RDF::Util::File.stub!(:open_file).and_yield(StringIO.new("foo"))
|
35
35
|
@dir = Dir.mktmpdir
|
36
36
|
@basename = File.join(@dir, "foo")
|
37
37
|
end
|
@@ -43,11 +43,11 @@ module RDF_Writer
|
|
43
43
|
it "yields writer given file_name" do
|
44
44
|
@writer_class.format.each do |f|
|
45
45
|
f.file_extensions.each_pair do |sym, content_type|
|
46
|
-
writer_mock =
|
47
|
-
|
48
|
-
|
46
|
+
writer_mock = mock("writer")
|
47
|
+
writer_mock.should_receive(:got_here)
|
48
|
+
@writer_class.should_receive(:for).with(:file_name => "#{@basename}.#{sym}").and_return(@writer_class)
|
49
49
|
@writer_class.open("#{@basename}.#{sym}") do |r|
|
50
|
-
|
50
|
+
r.should be_a(RDF::Writer)
|
51
51
|
writer_mock.got_here
|
52
52
|
end
|
53
53
|
end
|
@@ -57,11 +57,11 @@ module RDF_Writer
|
|
57
57
|
it "yields writer given symbol" do
|
58
58
|
@writer_class.format.each do |f|
|
59
59
|
sym = f.to_sym # Like RDF::NTriples::Format => :ntriples
|
60
|
-
writer_mock =
|
61
|
-
|
62
|
-
|
60
|
+
writer_mock = mock("writer")
|
61
|
+
writer_mock.should_receive(:got_here)
|
62
|
+
@writer_class.should_receive(:for).with(sym).and_return(@writer_class)
|
63
63
|
@writer_class.open("#{@basename}.#{sym}", :format => sym) do |r|
|
64
|
-
|
64
|
+
r.should be_a(RDF::Writer)
|
65
65
|
writer_mock.got_here
|
66
66
|
end
|
67
67
|
end
|
@@ -70,11 +70,11 @@ module RDF_Writer
|
|
70
70
|
it "yields writer given {:file_name => file_name}" do
|
71
71
|
@writer_class.format.each do |f|
|
72
72
|
f.file_extensions.each_pair do |sym, content_type|
|
73
|
-
writer_mock =
|
74
|
-
|
75
|
-
|
73
|
+
writer_mock = mock("writer")
|
74
|
+
writer_mock.should_receive(:got_here)
|
75
|
+
@writer_class.should_receive(:for).with(:file_name => "#{@basename}.#{sym}").and_return(@writer_class)
|
76
76
|
@writer_class.open("#{@basename}.#{sym}", :file_name => "#{@basename}.#{sym}") do |r|
|
77
|
-
|
77
|
+
r.should be_a(RDF::Writer)
|
78
78
|
writer_mock.got_here
|
79
79
|
end
|
80
80
|
end
|
@@ -84,11 +84,11 @@ module RDF_Writer
|
|
84
84
|
it "yields writer given {:content_type => 'a/b'}" do
|
85
85
|
@writer_class.format.each do |f|
|
86
86
|
f.content_types.each_pair do |content_type, formats|
|
87
|
-
writer_mock =
|
88
|
-
|
89
|
-
|
87
|
+
writer_mock = mock("writer")
|
88
|
+
writer_mock.should_receive(:got_here)
|
89
|
+
@writer_class.should_receive(:for).with(:content_type => content_type, :file_name => @basename).and_return(@writer_class)
|
90
90
|
@writer_class.open(@basename, :content_type => content_type) do |r|
|
91
|
-
|
91
|
+
r.should be_a(RDF::Writer)
|
92
92
|
writer_mock.got_here
|
93
93
|
end
|
94
94
|
end
|
@@ -99,44 +99,45 @@ module RDF_Writer
|
|
99
99
|
describe ".format" do
|
100
100
|
it "returns itself even if given explicit format" do
|
101
101
|
other_format = @writer_class == RDF::NTriples::Writer ? :nquads : :ntriples
|
102
|
-
|
102
|
+
@writer_class.for(other_format).should == @writer_class
|
103
103
|
end
|
104
104
|
end
|
105
105
|
|
106
106
|
describe ".new" do
|
107
107
|
it "sets @output to $stdout by default" do
|
108
|
-
writer_mock =
|
109
|
-
|
108
|
+
writer_mock = mock("writer")
|
109
|
+
writer_mock.should_receive(:got_here)
|
110
110
|
save, $stdout = $stdout, StringIO.new
|
111
111
|
|
112
112
|
@writer_class.new do |r|
|
113
113
|
writer_mock.got_here
|
114
|
-
|
114
|
+
r.instance_variable_get(:@output).should == $stdout
|
115
115
|
end
|
116
116
|
$stdout = save
|
117
117
|
end
|
118
118
|
|
119
119
|
it "sets @output to file given something other than a string" do
|
120
|
-
writer_mock =
|
121
|
-
|
120
|
+
writer_mock = mock("writer")
|
121
|
+
writer_mock.should_receive(:got_here)
|
122
122
|
file = StringIO.new
|
123
|
+
file.should_receive(:write).any_number_of_times
|
123
124
|
@writer_class.new(file) do |r|
|
124
125
|
writer_mock.got_here
|
125
|
-
|
126
|
+
r.instance_variable_get(:@output).should == file
|
126
127
|
end
|
127
128
|
end
|
128
129
|
|
129
130
|
it "sets prefixes given :prefixes => {}" do
|
130
|
-
writer_mock =
|
131
|
-
|
131
|
+
writer_mock = mock("writer")
|
132
|
+
writer_mock.should_receive(:got_here)
|
132
133
|
@writer_class.new(StringIO.new, :prefixes => {:a => "b"}) do |r|
|
133
134
|
writer_mock.got_here
|
134
|
-
|
135
|
+
r.prefixes.should == {:a => "b"}
|
135
136
|
end
|
136
137
|
end
|
137
138
|
|
138
139
|
#it "calls #write_prologue" do
|
139
|
-
# writer_mock =
|
140
|
+
# writer_mock = mock("writer")
|
140
141
|
# writer_mock.should_receive(:got_here)
|
141
142
|
# @writer_class.any_instance.should_receive(:write_prologue)
|
142
143
|
# @writer_class.new(StringIO.new) do |r|
|
@@ -145,7 +146,7 @@ module RDF_Writer
|
|
145
146
|
#end
|
146
147
|
#
|
147
148
|
#it "calls #write_epilogue" do
|
148
|
-
# writer_mock =
|
149
|
+
# writer_mock = mock("writer")
|
149
150
|
# writer_mock.should_receive(:got_here)
|
150
151
|
# @writer_class.any_instance.should_receive(:write_epilogue)
|
151
152
|
# @writer_class.new(StringIO.new) do |r|
|
@@ -157,7 +158,7 @@ module RDF_Writer
|
|
157
158
|
describe "#prefixes=" do
|
158
159
|
it "sets prefixes from hash" do
|
159
160
|
@writer.prefixes = {:a => "b"}
|
160
|
-
|
161
|
+
@writer.prefixes.should == {:a => "b"}
|
161
162
|
end
|
162
163
|
end
|
163
164
|
|
@@ -168,8 +169,8 @@ module RDF_Writer
|
|
168
169
|
"foo" => "bar",
|
169
170
|
}.each_pair do |pfx, uri|
|
170
171
|
it "sets prefix(#{pfx}) to #{uri}" do
|
171
|
-
|
172
|
-
|
172
|
+
@writer.prefix(pfx, uri).should == uri
|
173
|
+
@writer.prefix(pfx).should == uri
|
173
174
|
end
|
174
175
|
end
|
175
176
|
end
|
data/spec/version_spec.rb
CHANGED
@@ -2,6 +2,6 @@ require File.join(File.dirname(__FILE__), 'spec_helper')
|
|
2
2
|
|
3
3
|
describe 'RDF::Spec::VERSION' do
|
4
4
|
it "should match the VERSION file" do
|
5
|
-
|
5
|
+
RDF::Spec::VERSION.to_s.should == File.read(File.join(File.dirname(__FILE__), '..', 'VERSION')).chomp
|
6
6
|
end
|
7
7
|
end
|
metadata
CHANGED
@@ -1,60 +1,61 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdf-spec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.1.0.p1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arto Bendiken
|
8
8
|
- Ben Lavender
|
9
9
|
- Gregg Kellogg
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-04-13 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rdf
|
17
|
-
version_requirements: !ruby/object:Gem::Requirement
|
18
|
-
requirements:
|
19
|
-
- - ~>
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: '1.0'
|
22
17
|
requirement: !ruby/object:Gem::Requirement
|
23
18
|
requirements:
|
24
19
|
- - ~>
|
25
20
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
27
|
-
prerelease: false
|
21
|
+
version: 1.1.0
|
28
22
|
type: :development
|
29
|
-
|
30
|
-
name: rspec
|
23
|
+
prerelease: false
|
31
24
|
version_requirements: !ruby/object:Gem::Requirement
|
32
25
|
requirements:
|
33
|
-
- -
|
26
|
+
- - ~>
|
34
27
|
- !ruby/object:Gem::Version
|
35
|
-
version:
|
28
|
+
version: 1.1.0
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: rspec
|
36
31
|
requirement: !ruby/object:Gem::Requirement
|
37
32
|
requirements:
|
38
|
-
- - '>='
|
33
|
+
- - ! '>='
|
39
34
|
- !ruby/object:Gem::Version
|
40
|
-
version: '2.
|
41
|
-
prerelease: false
|
35
|
+
version: '2.12'
|
42
36
|
type: :runtime
|
43
|
-
|
44
|
-
name: yard
|
37
|
+
prerelease: false
|
45
38
|
version_requirements: !ruby/object:Gem::Requirement
|
46
39
|
requirements:
|
47
|
-
- - '>='
|
40
|
+
- - ! '>='
|
48
41
|
- !ruby/object:Gem::Version
|
49
|
-
version: '
|
42
|
+
version: '2.12'
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: yard
|
50
45
|
requirement: !ruby/object:Gem::Requirement
|
51
46
|
requirements:
|
52
|
-
- - '>='
|
47
|
+
- - ! '>='
|
53
48
|
- !ruby/object:Gem::Version
|
54
49
|
version: '0.8'
|
55
|
-
prerelease: false
|
56
50
|
type: :development
|
57
|
-
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ! '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0.8'
|
57
|
+
description: RDF.rb plugin that provides RSpec matchers and shared examples for RDF
|
58
|
+
objects.
|
58
59
|
email: public-rdf-ruby@w3.org
|
59
60
|
executables: []
|
60
61
|
extensions: []
|
@@ -66,13 +67,18 @@ files:
|
|
66
67
|
- UNLICENSE
|
67
68
|
- VERSION
|
68
69
|
- etc/bendiken.nq
|
70
|
+
- etc/bendiken.nt
|
71
|
+
- etc/bendiken.ttl
|
69
72
|
- etc/bhuga.nq
|
73
|
+
- etc/bhuga.nt
|
74
|
+
- etc/bhuga.ttl
|
75
|
+
- etc/doap.nq
|
70
76
|
- etc/doap.nt
|
77
|
+
- etc/doap.ttl
|
71
78
|
- etc/gkellogg.nq
|
72
|
-
- etc/
|
79
|
+
- etc/gkellogg.nt
|
80
|
+
- etc/gkellogg.ttl
|
73
81
|
- etc/test-data.nt
|
74
|
-
- etc/triples.nt
|
75
|
-
- lib/rdf/spec.rb
|
76
82
|
- lib/rdf/spec/countable.rb
|
77
83
|
- lib/rdf/spec/durable.rb
|
78
84
|
- lib/rdf/spec/enumerable.rb
|
@@ -89,30 +95,31 @@ files:
|
|
89
95
|
- lib/rdf/spec/version.rb
|
90
96
|
- lib/rdf/spec/writable.rb
|
91
97
|
- lib/rdf/spec/writer.rb
|
98
|
+
- lib/rdf/spec.rb
|
92
99
|
- spec/spec_helper.rb
|
93
100
|
- spec/version_spec.rb
|
94
|
-
homepage: http://github.com/
|
101
|
+
homepage: http://ruby-rdf.github.com/rdf-spec/
|
95
102
|
licenses:
|
96
103
|
- Public Domain
|
97
104
|
metadata: {}
|
98
|
-
post_install_message:
|
105
|
+
post_install_message:
|
99
106
|
rdoc_options: []
|
100
107
|
require_paths:
|
101
108
|
- lib
|
102
109
|
required_ruby_version: !ruby/object:Gem::Requirement
|
103
110
|
requirements:
|
104
|
-
- - '>='
|
111
|
+
- - ! '>='
|
105
112
|
- !ruby/object:Gem::Version
|
106
|
-
version: 1.
|
113
|
+
version: 1.9.2
|
107
114
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
115
|
requirements:
|
109
|
-
- - '
|
116
|
+
- - ! '>'
|
110
117
|
- !ruby/object:Gem::Version
|
111
|
-
version:
|
118
|
+
version: 1.3.1
|
112
119
|
requirements: []
|
113
120
|
rubyforge_project: rdf
|
114
121
|
rubygems_version: 2.0.3
|
115
|
-
signing_key:
|
122
|
+
signing_key:
|
116
123
|
specification_version: 4
|
117
124
|
summary: RSpec extensions for RDF.rb.
|
118
125
|
test_files: []
|
data/etc/quads.nq
DELETED
@@ -1,95 +0,0 @@
|
|
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> .
|