the-experimenters-rdf-rdfxml 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,13 @@
1
+ --title "RDF::RDFXML - RDF/XML reader/writer for RDF.rb"
2
+ --output-dir doc/yard
3
+ --protected
4
+ --no-private
5
+ --hide-void-return
6
+ --markup rdoc
7
+ --readme README.md
8
+ -
9
+ History.rdoc
10
+ AUTHORS
11
+ CONTRIBUTORS
12
+ VERSION
13
+ UNLICENSE
data/AUTHORS ADDED
@@ -0,0 +1 @@
1
+ * Gregg Kellogg <gregg@kellogg-assoc.com>
@@ -0,0 +1 @@
1
+ * Nicholas Humfrey <nicholas.humfrey@bbc.co.uk>
@@ -0,0 +1,100 @@
1
+ === 0.3.3
2
+ * Change licensing to UNLICENSE.
3
+ * Only generate prefix definitions for prefixes actually used within a serialization.
4
+ * Make sure that only valid QNames are generated in writer.
5
+
6
+ === 0.3.2.1
7
+ * Fix collection serialization bug
8
+ * Assert :xml as a format type (by creating RDF::RDFXML::XML as a sub-class of Format that uses RDFXML::Reader/Writer)
9
+
10
+ === 0.3.2
11
+ * Refactor rdfcore tests using Spira and open-uri-cached.
12
+ * Improve detection and reporting of attempts to write illegal values.
13
+
14
+ === 0.3.1
15
+ * In writer
16
+ * fix bug where a serialized subject is output again, when it appears in a collection.
17
+ * Fix subject ordering.
18
+
19
+ === 0.3.0
20
+ * RDF.rb 0.3.0 compatibility updates
21
+ * Remove literal_normalization and qname_hacks, add back uri_hacks (until 0.3.0)
22
+ * Use nil for default namespace
23
+ * In Writer
24
+ * Use only :prefixes for creating QNames.
25
+ * Add :standard_prefixes and :default_namespace options.
26
+ * Improve Writer#to_qname.
27
+ * Don't try to translate rdf:_1 to rdf:li due to complex corner cases.
28
+ * Fix problems with XMLLiteral, rdf:type and rdf:nodeID serialization.
29
+ * In Reader
30
+ * URI canonicalization and validation.
31
+ * Added :canonicalize, and :intern options.
32
+ * Change :strict option to :validate.
33
+ * Don't create unnecessary namespaces.
34
+ * Don't use regexp to substitute base URI in URI serialization.
35
+ * Collect prefixes when extracting mappings.
36
+ * Literal::XML
37
+ * Add all in-scope namespaces, not just those that seem to be used.
38
+ * RSpec 2 compatibility
39
+
40
+ === 0.2.3
41
+ * Fixed QName generation in Writer based on RDF/XML Processing recommendations
42
+
43
+ === 0.2.2.1
44
+ * Ruby 1.9.2 support.
45
+ * Added script/tc to run test cases
46
+ * Mark failing XMLLiteral tests as pending
47
+
48
+ === 0.2.2
49
+ * Fix bug creating datatyped literal where datatype is a string, not an RDF::URI
50
+ * Added more XMLLiteral tests (fail, until full canonicalization working)
51
+ * Added RDF_Reader and RDF_Writer behavior expectations
52
+ * Use RDF::Writer#prefix and #prefixes implementation instead of internal version.
53
+ * Added RDF::Reader#rewind and #close, which override default behavior as stream is closed on initialization and rewinding isn't required.
54
+ * In console, load RDF.rb from parent directory, if it exists.
55
+ * Dependencies on RDF 0.2.2
56
+ * Replace String#rdf_escape with RDF::NTriples.escape
57
+ * Fixed bug in Writer where a qname was expected for sorting, but property has no qname
58
+ * Handle XMLLiteral when value is a Nokogiri node set.
59
+ * Ensure URIs are properly RDF Escaped (patch to RDF::NTriples::Writer#format_uri)
60
+
61
+ === 0.2.1
62
+ * Update for RDF 0.2.1
63
+ * Writer bug fixes:
64
+ * RDF::Node#identifier => RDF::Node#id
65
+ * Vocabulary.new(uri) => Vocabulary(uri)
66
+
67
+ === 0.2.0
68
+ * Updates for RDF 0.2.0
69
+ * Use URI#intern instead of URI#new
70
+ * Change use of Graph#predicates and Graph#objects to use as enumerables
71
+
72
+ === 0.0.3
73
+ * Added patches for the following:
74
+ * RDF::Graph#properties
75
+ * RDF::Graph#seq (Output rdf:Seq elements in order)
76
+ * RDF::Graph#type_of
77
+ * RDF::Literal.xmlliteral (Create literal and normalize XML)
78
+ * RDF::Literal#xmlliteral?
79
+ * RDF::Literal#anonymous? (missing from library)
80
+ * RDF::Literal#to_s (only one of @lang or ^^type, not both)
81
+ * RDF::URI#join (Don't add trailing '/')
82
+ * Reader fixes
83
+ * Writer complete
84
+ * Spec status
85
+ * Isomorphic XMLLiteral tests fail due to attribute order variation
86
+ * Reader parsing multi-line quite in NTriples test file fails due to lack of support in RDF::NTriples
87
+ * A couple of URI normalizations fail:
88
+ * should create <http://foo/> from <http://foo#> and ''
89
+ * should create <http://foo/bar> from <http://foo/bar#> and ''
90
+ * Writer test needs Turtle reader
91
+
92
+ === 0.0.2
93
+ * Added specs from RdfContext
94
+ * Added array_hacks, nokogiri_hacks, and rdf_escape
95
+ * Fixed most bugs that are not related to the underlying framework.
96
+ * Specific failing testcases for rdf-isomorphic, RDF::Literaland others need to be constructed and added as issues against those gems.
97
+ * Removed interal graph in Reader and implement each_triple & each_statement to perform parsing
98
+
99
+ === 0.0.1
100
+ * First port from RdfContext version 0.5.4
data/README ADDED
@@ -0,0 +1,95 @@
1
+ # RDF::RDFXML reader/writer
2
+
3
+ [RDF/XML][RDF/XML] parser for [RDF.rb][RDF.rb].
4
+
5
+ ## DESCRIPTION
6
+
7
+ RDF::RDFXML is an [RDF/XML][RDF/XML] reader/writer for Ruby using the [RDF.rb][RDF.rb] library suite.
8
+
9
+ ## FEATURES
10
+ RDF::RDFXML parses [RDF/XML][RDF/XML] into statements or triples and serializes triples, statements or graphs.
11
+
12
+ Fully compliant [RDF/XML][RDF/XML] parser and serializer.
13
+
14
+ Install with `gem install rdf-rdfxml`
15
+
16
+ ## Usage:
17
+ Instantiate a parser and parse source, specifying type and base-URL
18
+
19
+ RDF::RDFXML::Reader.open("./etc/doap.xml") do |reader|
20
+ reader.each_statement do |statement|
21
+ puts statement.inspect
22
+ end
23
+ end
24
+
25
+ ## Dependencies
26
+ * [RDF.rb](http://rubygems.org/gems/rdf) (>= 0.3.1)
27
+ * [Nokogiri](http://rubygems.org/gems/nokogiri) (>= 1.4.4)
28
+
29
+ ## Documentation
30
+ Full documentation available on [RubyForge](http://rdf.rubyforge.org/rdfxml)
31
+
32
+ ### Principle Classes
33
+ * {RDF::RDFXML}
34
+ * {RDF::RDFXML::Format}
35
+ * {RDF::RDFXML::Reader}
36
+ * {RDF::RDFXML::Writer}
37
+
38
+ ### Additional vocabularies
39
+ * {RDF::XML}
40
+
41
+ ### Patches
42
+ * {Array}
43
+ * {RDF::Graph}
44
+ * {RDF::Literal::XML}
45
+ * {Nokogiri::XML::Node}
46
+
47
+ ## TODO
48
+ * Add support for LibXML and REXML bindings, and use the best available
49
+ * Consider a SAX-based parser for improved performance
50
+
51
+ ## Resources
52
+ * [RDF.rb][RDF.rb]
53
+ * [RDF/XML][RDF/XML]
54
+ * [Distiller](http://distiller.kellogg-assoc)
55
+ * [Documentation](http://rdf.rubyforge.org/rdfxml)
56
+ * [History](file:file.History.html)
57
+ * [RDF Tests](http://www.w3.org/2000/10/rdf-tests/rdfcore/allTestCases.html)
58
+
59
+ ## Author
60
+ * [Gregg Kellogg](http://github.com/gkellogg) - <http://kellogg-assoc.com/>
61
+
62
+ ## Contributors
63
+ * [Nicholas Humfrey](http://github.com/njh)
64
+
65
+ ## Contributing
66
+
67
+ * Do your best to adhere to the existing coding conventions and idioms.
68
+ * Don't use hard tabs, and don't leave trailing whitespace on any line.
69
+ * Do document every method you add using [YARD][] annotations. Read the
70
+ [tutorial][YARD-GS] or just look at the existing code for examples.
71
+ * Don't touch the `.gemspec`, `VERSION` or `AUTHORS` files. If you need to
72
+ change them, do so on your private branch only.
73
+ * Do feel free to add yourself to the `CREDITS` file and the corresponding
74
+ list in the the `README`. Alphabetical order applies.
75
+ * Do note that in order for us to merge any non-trivial changes (as a rule
76
+ of thumb, additions larger than about 15 lines of code), we need an
77
+ explicit [public domain dedication][PDD] on record from you.
78
+
79
+ ## License
80
+
81
+ This is free and unencumbered public domain software. For more information,
82
+ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
83
+
84
+ ## FEEDBACK
85
+
86
+ * gregg@kellogg-assoc.com
87
+ * <http://rubygems.org/rdf-rdfxml>
88
+ * <http://github.com/gkellogg/rdf-rdfxml>
89
+ * <http://lists.w3.org/Archives/Public/public-rdf-ruby/>
90
+
91
+ [RDF.rb]: http://rdf.rubyforge.org/
92
+ [RDF/XML]: http://www.w3.org/TR/REC-rdf-syntax/ "RDF/XML Syntax Specification"
93
+ [YARD]: http://yardoc.org/
94
+ [YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md
95
+ [PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
@@ -0,0 +1,95 @@
1
+ # RDF::RDFXML reader/writer
2
+
3
+ [RDF/XML][RDF/XML] parser for [RDF.rb][RDF.rb].
4
+
5
+ ## DESCRIPTION
6
+
7
+ RDF::RDFXML is an [RDF/XML][RDF/XML] reader/writer for Ruby using the [RDF.rb][RDF.rb] library suite.
8
+
9
+ ## FEATURES
10
+ RDF::RDFXML parses [RDF/XML][RDF/XML] into statements or triples and serializes triples, statements or graphs.
11
+
12
+ Fully compliant [RDF/XML][RDF/XML] parser and serializer.
13
+
14
+ Install with `gem install rdf-rdfxml`
15
+
16
+ ## Usage:
17
+ Instantiate a parser and parse source, specifying type and base-URL
18
+
19
+ RDF::RDFXML::Reader.open("./etc/doap.xml") do |reader|
20
+ reader.each_statement do |statement|
21
+ puts statement.inspect
22
+ end
23
+ end
24
+
25
+ ## Dependencies
26
+ * [RDF.rb](http://rubygems.org/gems/rdf) (>= 0.3.1)
27
+ * [Nokogiri](http://rubygems.org/gems/nokogiri) (>= 1.4.4)
28
+
29
+ ## Documentation
30
+ Full documentation available on [RubyForge](http://rdf.rubyforge.org/rdfxml)
31
+
32
+ ### Principle Classes
33
+ * {RDF::RDFXML}
34
+ * {RDF::RDFXML::Format}
35
+ * {RDF::RDFXML::Reader}
36
+ * {RDF::RDFXML::Writer}
37
+
38
+ ### Additional vocabularies
39
+ * {RDF::XML}
40
+
41
+ ### Patches
42
+ * {Array}
43
+ * {RDF::Graph}
44
+ * {RDF::Literal::XML}
45
+ * {Nokogiri::XML::Node}
46
+
47
+ ## TODO
48
+ * Add support for LibXML and REXML bindings, and use the best available
49
+ * Consider a SAX-based parser for improved performance
50
+
51
+ ## Resources
52
+ * [RDF.rb][RDF.rb]
53
+ * [RDF/XML][RDF/XML]
54
+ * [Distiller](http://distiller.kellogg-assoc)
55
+ * [Documentation](http://rdf.rubyforge.org/rdfxml)
56
+ * [History](file:file.History.html)
57
+ * [RDF Tests](http://www.w3.org/2000/10/rdf-tests/rdfcore/allTestCases.html)
58
+
59
+ ## Author
60
+ * [Gregg Kellogg](http://github.com/gkellogg) - <http://kellogg-assoc.com/>
61
+
62
+ ## Contributors
63
+ * [Nicholas Humfrey](http://github.com/njh)
64
+
65
+ ## Contributing
66
+
67
+ * Do your best to adhere to the existing coding conventions and idioms.
68
+ * Don't use hard tabs, and don't leave trailing whitespace on any line.
69
+ * Do document every method you add using [YARD][] annotations. Read the
70
+ [tutorial][YARD-GS] or just look at the existing code for examples.
71
+ * Don't touch the `.gemspec`, `VERSION` or `AUTHORS` files. If you need to
72
+ change them, do so on your private branch only.
73
+ * Do feel free to add yourself to the `CREDITS` file and the corresponding
74
+ list in the the `README`. Alphabetical order applies.
75
+ * Do note that in order for us to merge any non-trivial changes (as a rule
76
+ of thumb, additions larger than about 15 lines of code), we need an
77
+ explicit [public domain dedication][PDD] on record from you.
78
+
79
+ ## License
80
+
81
+ This is free and unencumbered public domain software. For more information,
82
+ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
83
+
84
+ ## FEEDBACK
85
+
86
+ * gregg@kellogg-assoc.com
87
+ * <http://rubygems.org/rdf-rdfxml>
88
+ * <http://github.com/gkellogg/rdf-rdfxml>
89
+ * <http://lists.w3.org/Archives/Public/public-rdf-ruby/>
90
+
91
+ [RDF.rb]: http://rdf.rubyforge.org/
92
+ [RDF/XML]: http://www.w3.org/TR/REC-rdf-syntax/ "RDF/XML Syntax Specification"
93
+ [YARD]: http://yardoc.org/
94
+ [YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md
95
+ [PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
@@ -0,0 +1,59 @@
1
+ require 'rubygems'
2
+ require 'yard'
3
+
4
+ begin
5
+ gem 'jeweler'
6
+ require 'jeweler'
7
+ Jeweler::Tasks.new do |gemspec|
8
+ gemspec.name = "rdf-rdfxml"
9
+ gemspec.summary = "RDF/XML reader/writer for RDF.rb."
10
+ gemspec.description = %q(RDF::RDFXML is an RDF/XML reader and writer for the RDF.rb library suite.)
11
+ gemspec.email = "gregg@kellogg-assoc.com"
12
+ gemspec.homepage = "http://github.com/gkellogg/rdf-rdfxml"
13
+ gemspec.authors = ["Gregg Kellogg"]
14
+ gemspec.add_dependency('rdf', '>= 0.3.3')
15
+ gemspec.add_dependency('nokogiri', '>= 1.4.4')
16
+ gemspec.add_development_dependency('open-uri-cached')
17
+ gemspec.add_development_dependency('spira', '>= 0.0.12')
18
+ gemspec.add_development_dependency('rspec', '>= 2.5.0')
19
+ gemspec.add_development_dependency('rdf-spec', '>= 0.3.3')
20
+ gemspec.add_development_dependency('rdf-isomorphic', '>= 0.3.4')
21
+ gemspec.add_development_dependency('yard', '>= 0.6.4')
22
+ gemspec.extra_rdoc_files = %w(README.md History.rdoc AUTHORS CONTRIBUTORS UNLICENSE)
23
+ end
24
+ Jeweler::GemcutterTasks.new
25
+ rescue LoadError
26
+ puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
27
+ end
28
+
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec)
31
+
32
+ desc "Run specs through RCov"
33
+ RSpec::Core::RakeTask.new("spec:rcov") do |spec|
34
+ spec.rcov = true
35
+ spec.rcov_opts = %q[--exclude "spec"]
36
+ end
37
+
38
+ desc "Generate HTML report specs"
39
+ RSpec::Core::RakeTask.new("doc:spec") do |spec|
40
+ spec.rspec_opts = ["--format", "html", "-o", "doc/spec.html"]
41
+ end
42
+
43
+ YARD::Rake::YardocTask.new
44
+
45
+ desc "Generate RDF Core Manifest.yml"
46
+ namespace :spec do
47
+ task :prepare do
48
+ $:.unshift(File.join(File.dirname(__FILE__), 'lib'))
49
+ require 'rdf/rdfxml'
50
+ require 'spec/rdf_helper'
51
+ require 'fileutils'
52
+
53
+ yaml = File.join(RDFCORE_DIR, "Manifest.yml")
54
+ FileUtils.rm_f(yaml)
55
+ RdfHelper::TestCase.to_yaml(RDFCORE_TEST, RDFCORE_DIR, yaml)
56
+ end
57
+ end
58
+
59
+ task :default => :spec
@@ -0,0 +1,24 @@
1
+ This is free and unencumbered software released into the public domain.
2
+
3
+ Anyone is free to copy, modify, publish, use, compile, sell, or
4
+ distribute this software, either in source code form or as a compiled
5
+ binary, for any purpose, commercial or non-commercial, and by any
6
+ means.
7
+
8
+ In jurisdictions that recognize copyright laws, the author or authors
9
+ of this software dedicate any and all copyright interest in the
10
+ software to the public domain. We make this dedication for the benefit
11
+ of the public at large and to the detriment of our heirs and
12
+ successors. We intend this dedication to be an overt act of
13
+ relinquishment in perpetuity of all present and future rights to this
14
+ software under copyright law.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ For more information, please refer to <http://unlicense.org/>
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.3.3
@@ -0,0 +1,47 @@
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://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://datagraph.org/bendiken/foaf> .
3
+ <http://ar.to/#self> <http://xmlns.com/foaf/0.1/homepage> <http://ar.to/> .
4
+ <http://ar.to/#self> <http://xmlns.com/foaf/0.1/made> <http://rubygems.org/gems/rdf> .
5
+ <http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox> <mailto:arto.bendiken@gmail.com> .
6
+ <http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "a033f652c84a4d73b8c26d318c2395699dd2bdfb" .
7
+ <http://ar.to/#self> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "d0737cceb55eb7d740578d2db1bc0727e3ed49ce" .
8
+ <http://ar.to/#self> <http://xmlns.com/foaf/0.1/name> "Arto Bendiken" .
9
+ <http://bhuga.net/#ben> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
10
+ <http://bhuga.net/#ben> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://datagraph.org/bhuga/foaf> .
11
+ <http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/homepage> <http://bhuga.net/> .
12
+ <http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/mbox> <mailto:blavender@gmail.com> .
13
+ <http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/mbox_sha1sum> "dbf45f4ffbd27b67aa84f02a6a31c144727d10af" .
14
+ <http://bhuga.net/#ben> <http://xmlns.com/foaf/0.1/name> "Ben Lavender" .
15
+ <http://rubygems.org/gems/rdf> <http://purl.org/dc/terms/creator> <http://ar.to/#self> .
16
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#blog> <http://ar.to/> .
17
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#blog> <http://blog.datagraph.org/> .
18
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#bug-database> <http://github.com/bendiken/rdf/issues> .
19
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Resource_Description_Framework> .
20
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Ruby_(programming_language)> .
21
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#created> "2007-10-23" .
22
+ <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 .
23
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#developer> <http://ar.to/#self> .
24
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#developer> <http://bhuga.net/#ben> .
25
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#documenter> <http://ar.to/#self> .
26
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#download-page> <http://rubyforge.org/projects/rdf/> .
27
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:genid1 .
28
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:genid2 .
29
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#helper> _:genid3 .
30
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#homepage> <http://rdf.rubyforge.org/> .
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#maintainer> <http://ar.to/#self> .
33
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#name> "RDF.rb" .
34
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#platform> "Ruby" .
35
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#shortdesc> "A Ruby library for working with Resource Description Framework (RDF) data."@en .
36
+ <http://rubygems.org/gems/rdf> <http://usefulinc.com/ns/doap#vendor> <http://datagraph.org/> .
37
+ <http://rubygems.org/gems/rdf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
38
+ <http://rubygems.org/gems/rdf> <http://xmlns.com/foaf/0.1/maker> <http://ar.to/#self> .
39
+ _:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
40
+ _:genid1 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "c69f3255ff0639543cc5edfd8116eac8df16fab8" .
41
+ _:genid1 <http://xmlns.com/foaf/0.1/name> "Hellekin O. Wolf" .
42
+ _:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
43
+ _:genid2 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "f7653fc1ac0e82ebb32f092389bd5fc728eaae12" .
44
+ _:genid2 <http://xmlns.com/foaf/0.1/name> "John Fieber" .
45
+ _:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
46
+ _:genid3 <http://xmlns.com/foaf/0.1/mbox_sha1sum> "bedbbf2451e5beb38d59687c0460032aff92cd3c" .
47
+ _:genid3 <http://xmlns.com/foaf/0.1/name> "Pius Uzamere" .