reddy 0.1.0

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.
Files changed (69) hide show
  1. data/HACKNOTES +2 -0
  2. data/History.txt +3 -0
  3. data/Manifest.txt +80 -0
  4. data/README.rdoc +48 -0
  5. data/README.txt +62 -0
  6. data/Rakefile +67 -0
  7. data/lib/reddy.rb +8 -0
  8. data/lib/reddy/bnode.rb +70 -0
  9. data/lib/reddy/exceptions/about_each_exception.rb +2 -0
  10. data/lib/reddy/exceptions/uri_relative_exception.rb +2 -0
  11. data/lib/reddy/graph.rb +182 -0
  12. data/lib/reddy/libxml_hacks.rb +6 -0
  13. data/lib/reddy/literal.rb +211 -0
  14. data/lib/reddy/n3_grammar.treetop +129 -0
  15. data/lib/reddy/n3parser.rb +145 -0
  16. data/lib/reddy/namespace.rb +73 -0
  17. data/lib/reddy/rdfaparser.rb +63 -0
  18. data/lib/reddy/rdfxmlparser.rb +254 -0
  19. data/lib/reddy/rexml_hacks.rb +97 -0
  20. data/lib/reddy/triple.rb +95 -0
  21. data/lib/reddy/uriref.rb +66 -0
  22. data/reddy.gemspec +50 -0
  23. data/spec/bnode_spec.rb +29 -0
  24. data/spec/graph_spec.rb +138 -0
  25. data/spec/literal_spec.rb +142 -0
  26. data/spec/n3parser_spec.rb +86 -0
  27. data/spec/namespaces_spec.rb +44 -0
  28. data/spec/parser_spec.rb +391 -0
  29. data/spec/rdfa_parser_spec.rb +28 -0
  30. data/spec/rexml_hacks_spec.rb +99 -0
  31. data/spec/triple_spec.rb +108 -0
  32. data/spec/uriref_spec.rb +96 -0
  33. data/test/longtests_spec.rb +25 -0
  34. data/test/n3_tests/lcsh/sh85062913.n3 +41 -0
  35. data/test/n3_tests/lcsh/sh85062913.nt +21 -0
  36. data/test/n3_tests/lcsh/sh85082139.n3 +157 -0
  37. data/test/n3_tests/lcsh/sh85082139.nt +79 -0
  38. data/test/n3_tests/lcsh/sh85118553.n3 +123 -0
  39. data/test/n3_tests/lcsh/sh85118553.nt +63 -0
  40. data/test/n3_tests/misc/on_now-01.n3 +30 -0
  41. data/test/n3_tests/misc/on_now-01.nt +15 -0
  42. data/test/n3_tests/n3p/simple-01.n3 +1 -0
  43. data/test/n3_tests/n3p/simple-01.nt +0 -0
  44. data/test/n3_tests/n3p/simple-02.n3 +4 -0
  45. data/test/n3_tests/n3p/simple-02.nt +0 -0
  46. data/test/n3_tests/n3p/simple-03.n3 +5 -0
  47. data/test/n3_tests/n3p/simple-03.nt +1 -0
  48. data/test/n3_tests/n3p/simple-04.n3 +6 -0
  49. data/test/n3_tests/n3p/simple-04.nt +3 -0
  50. data/test/n3_tests/n3p/simple-05.n3 +7 -0
  51. data/test/n3_tests/n3p/simple-05.nt +2 -0
  52. data/test/n3_tests/n3p/simple-06.n3 +6 -0
  53. data/test/n3_tests/n3p/simple-06.nt +4 -0
  54. data/test/n3_tests/n3p/simple-07.n3 +7 -0
  55. data/test/n3_tests/n3p/simple-07.nt +6 -0
  56. data/test/perf_test/test.rb +11 -0
  57. data/test/perf_test/tommorris.rdf +2267 -0
  58. data/test/rdf_tests/cc197bad-dc9c-440d-a5b5-d52ba2e14234.nt +24 -0
  59. data/test/rdf_tests/cc197bad-dc9c-440d-a5b5-d52ba2e14234.rdf +46 -0
  60. data/test/rdf_tests/tm_001.nt +1 -0
  61. data/test/rdf_tests/tm_001.rdf +7 -0
  62. data/test/rdf_tests/xml-literal-mixed.nt +7 -0
  63. data/test/rdf_tests/xml-literal-mixed.rdf +15 -0
  64. data/test/ruby_fundamentals.spec.rb +17 -0
  65. data/test/test_helper.rb +2 -0
  66. data/test/test_reddy.rb +11 -0
  67. data/test/test_uris.rb +13 -0
  68. data/test/xml.rdf +6 -0
  69. metadata +198 -0
@@ -0,0 +1,24 @@
1
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234.rdf> <http://www.w3.org/2000/01/rdf-schema#label> "Description of the artist Coldplay" .
2
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/ontology/mo/MusicGroup> .
3
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://xmlns.com/foaf/0.1/name> "Coldplay" .
4
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://www.w3.org/2002/07/owl#sameAs> <http://dbpedia.org/resource/Coldplay> .
5
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://purl.org/ontology/mo/image> <http://www.bbc.co.uk/music/images/artists/7col_in/cc197bad-dc9c-440d-a5b5-d52ba2e14234.jpg> .
6
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://xmlns.com/foaf/0.1/page> <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234.html> .
7
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://purl.org/ontology/mo/musicbrainz> <http://musicbrainz.org/artist/cc197bad-dc9c-440d-a5b5-d52ba2e14234.html> .
8
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://purl.org/ontology/mo/homepage> <http://www.coldplay.com/> .
9
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://purl.org/ontology/mo/fanpage> <http://www.pleasureunit.com/coldplay/index.php> .
10
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://purl.org/ontology/mo/wikipedia> <http://en.wikipedia.org/wiki/Coldplay> .
11
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://purl.org/ontology/mo/imdb> <http://www.imdb.com/name/nm1095892/> .
12
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://purl.org/ontology/mo/myspace> <http://www.myspace.com/coldplay> .
13
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://purl.org/ontology/mo/member> <http://www.bbc.co.uk/music/artists/18690715-59fa-4e4d-bcf3-8025cf1c23e0#artist> .
14
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://purl.org/ontology/mo/member> <http://www.bbc.co.uk/music/artists/d156ceb2-fd90-4e82-baea-829bbdf1c127#artist> .
15
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://purl.org/ontology/mo/member> <http://www.bbc.co.uk/music/artists/6953c4db-7214-4724-a140-e87550bde420#artist> .
16
+ <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist> <http://purl.org/ontology/mo/member> <http://www.bbc.co.uk/music/artists/98d1ec5a-dd97-4c0b-9c83-7928aac89bca#artist> .
17
+ <http://www.bbc.co.uk/music/artists/18690715-59fa-4e4d-bcf3-8025cf1c23e0#artist> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/ontology/mo/SoloMusicArtist> .
18
+ <http://www.bbc.co.uk/music/artists/18690715-59fa-4e4d-bcf3-8025cf1c23e0#artist> <http://xmlns.com/foaf/0.1/name> "Guy Berryman" .
19
+ <http://www.bbc.co.uk/music/artists/d156ceb2-fd90-4e82-baea-829bbdf1c127#artist> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/ontology/mo/SoloMusicArtist> .
20
+ <http://www.bbc.co.uk/music/artists/d156ceb2-fd90-4e82-baea-829bbdf1c127#artist> <http://xmlns.com/foaf/0.1/name> "Jon Buckland" .
21
+ <http://www.bbc.co.uk/music/artists/6953c4db-7214-4724-a140-e87550bde420#artist> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/ontology/mo/SoloMusicArtist> .
22
+ <http://www.bbc.co.uk/music/artists/6953c4db-7214-4724-a140-e87550bde420#artist> <http://xmlns.com/foaf/0.1/name> "Will Champion" .
23
+ <http://www.bbc.co.uk/music/artists/98d1ec5a-dd97-4c0b-9c83-7928aac89bca#artist> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/ontology/mo/SoloMusicArtist> .
24
+ <http://www.bbc.co.uk/music/artists/98d1ec5a-dd97-4c0b-9c83-7928aac89bca#artist> <http://xmlns.com/foaf/0.1/name> "Chris Martin" .
@@ -0,0 +1,46 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <rdf:RDF xmlns:rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3
+ xmlns:rdfs = "http://www.w3.org/2000/01/rdf-schema#"
4
+ xmlns:foaf = "http://xmlns.com/foaf/0.1/"
5
+ xmlns:mo = "http://purl.org/ontology/mo/"
6
+ xmlns:owl = "http://www.w3.org/2002/07/owl#">
7
+
8
+ <rdf:Description rdf:about="/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234.rdf">
9
+ <rdfs:label>Description of the artist Coldplay</rdfs:label>
10
+ </rdf:Description>
11
+
12
+ <mo:MusicGroup rdf:about="/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234#artist">
13
+ <foaf:name>Coldplay</foaf:name>
14
+ <owl:sameAs rdf:resource="http://dbpedia.org/resource/Coldplay" />
15
+ <mo:image rdf:resource="/music/images/artists/7col_in/cc197bad-dc9c-440d-a5b5-d52ba2e14234.jpg" />
16
+
17
+ <foaf:page rdf:resource="/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234.html" />
18
+ <mo:musicbrainz rdf:resource="http://musicbrainz.org/artist/cc197bad-dc9c-440d-a5b5-d52ba2e14234.html" />
19
+ <mo:homepage rdf:resource="http://www.coldplay.com/" />
20
+ <mo:fanpage rdf:resource="http://www.pleasureunit.com/coldplay/index.php" />
21
+ <mo:wikipedia rdf:resource="http://en.wikipedia.org/wiki/Coldplay" />
22
+ <mo:imdb rdf:resource="http://www.imdb.com/name/nm1095892/" />
23
+ <mo:myspace rdf:resource="http://www.myspace.com/coldplay" />
24
+
25
+ <mo:member rdf:resource="/music/artists/18690715-59fa-4e4d-bcf3-8025cf1c23e0#artist" />
26
+ <mo:member rdf:resource="/music/artists/d156ceb2-fd90-4e82-baea-829bbdf1c127#artist" />
27
+ <mo:member rdf:resource="/music/artists/6953c4db-7214-4724-a140-e87550bde420#artist" />
28
+ <mo:member rdf:resource="/music/artists/98d1ec5a-dd97-4c0b-9c83-7928aac89bca#artist" />
29
+ </mo:MusicGroup>
30
+
31
+ <mo:SoloMusicArtist rdf:about="/music/artists/18690715-59fa-4e4d-bcf3-8025cf1c23e0#artist">
32
+ <foaf:name>Guy Berryman</foaf:name>
33
+ </mo:SoloMusicArtist>
34
+ <mo:SoloMusicArtist rdf:about="/music/artists/d156ceb2-fd90-4e82-baea-829bbdf1c127#artist">
35
+ <foaf:name>Jon Buckland</foaf:name>
36
+ </mo:SoloMusicArtist>
37
+ <mo:SoloMusicArtist rdf:about="/music/artists/6953c4db-7214-4724-a140-e87550bde420#artist">
38
+ <foaf:name>Will Champion</foaf:name>
39
+ </mo:SoloMusicArtist>
40
+ <mo:SoloMusicArtist rdf:about="/music/artists/98d1ec5a-dd97-4c0b-9c83-7928aac89bca#artist">
41
+ <foaf:name>Chris Martin</foaf:name>
42
+ </mo:SoloMusicArtist>
43
+
44
+
45
+
46
+ </rdf:RDF>
@@ -0,0 +1 @@
1
+ <http://example.org> <http://example.org/title> "Bar" .
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" ?>
2
+ <rdf:RDF xmlns="http://example.org/"
3
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
4
+ <rdf:Description rdf:about="http://example.org">
5
+ <title>Bar</title>
6
+ </rdf:Description>
7
+ </rdf:RDF>
@@ -0,0 +1,7 @@
1
+ <http://www.example.com/books#book12345> <http://purl.org/dc/elements/1.1/title> """
2
+ Foo
3
+ <html:b xmlns:html="http://www.w3.org/1999/xhtml" html:a="b">bar<rdf:Thing xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><a:b xmlns:a="foo:"></a:b>here<a:c xmlns:a="foo:"></a:c></rd
4
+ f:Thing></html:b>
5
+ baz
6
+ <html:i xmlns:html="http://www.w3.org/1999/xhtml">more</html:i>
7
+ """^^rdf:XMLLiteral .
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" ?>
2
+ <rdf:RDF xmlns="http://purl.org/dc/elements/1.1/"
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
5
+
6
+ <rdf:Description rdf:about="http://www.example.com/books#book12345">
7
+ <title rdf:parseType="Literal">
8
+ Foo
9
+ <html:b xmlns:html="http://www.w3.org/1999/xhtml" html:a="b">bar<rdf:Thing xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><a:b xmlns:a="foo:"></a:b>here<a:c xmlns:a="foo:"></a:c></rdf:Thing></html:b>
10
+ baz
11
+ <html:i xmlns:html="http://www.w3.org/1999/xhtml">more</html:i>
12
+
13
+ </title>
14
+ </rdf:Description>
15
+ </rdf:RDF>
@@ -0,0 +1,17 @@
1
+ class TestClass
2
+ def initialize(bool)
3
+ if bool == true
4
+ print "Bingbong"
5
+ else
6
+ raise "Not true!"
7
+ end
8
+ end
9
+ end
10
+
11
+ describe "Ruby classes" do
12
+ it "should do something sensible when class raises error while instantiating" do
13
+ if f = TestClass.new(false) do
14
+
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,2 @@
1
+ require 'test/unit'
2
+ require File.dirname(__FILE__) + '/../lib/reddy'
@@ -0,0 +1,11 @@
1
+ require File.dirname(__FILE__) + '/test_helper.rb'
2
+
3
+ class TestReddy < Test::Unit::TestCase
4
+
5
+ def setup
6
+ end
7
+
8
+ def test_truth
9
+ assert true
10
+ end
11
+ end
@@ -0,0 +1,13 @@
1
+ require 'test/unit'
2
+ require 'uri'
3
+ require 'cgi'
4
+ require 'rubygems'
5
+ require 'addressable/uri'
6
+
7
+ class TestUris < Test::Unit::TestCase
8
+ def test_encoding
9
+ f = Addressable::URI.parse("http://example.org/André")
10
+ assert_equal("http://example.org/André", f.to_s)
11
+ assert_equal(false, f.relative?)
12
+ end
13
+ end
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" ?>
2
+ <rdf:RDF xmlns:rdf="http://www.w3.org/TR/rdf-syntax-grammar" xmlns:foaf="http://xmlns.com/foaf/0.1/">
3
+ <rdf:Description rdf:resource="http://example.org/foo">
4
+ <foaf:name>Tom</foaf:name>
5
+ </rdf:Description>
6
+ </rdf:RDF>
metadata ADDED
@@ -0,0 +1,198 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: reddy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Tom Morris
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-12-02 00:00:00 +00:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: addressable
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 2.0.0
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: treetop
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 1.2.4
34
+ version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: libxml-ruby
37
+ type: :runtime
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 0.8.3
44
+ version:
45
+ - !ruby/object:Gem::Dependency
46
+ name: whatlanguage
47
+ type: :runtime
48
+ version_requirement:
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 1.0.0
54
+ version:
55
+ - !ruby/object:Gem::Dependency
56
+ name: newgem
57
+ type: :development
58
+ version_requirement:
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: 1.1.0
64
+ version:
65
+ - !ruby/object:Gem::Dependency
66
+ name: hoe
67
+ type: :development
68
+ version_requirement:
69
+ version_requirements: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: 1.8.0
74
+ version:
75
+ description: Reddy is an RDF library for Ruby.
76
+ email:
77
+ - tom@tommorris.org
78
+ executables: []
79
+
80
+ extensions: []
81
+
82
+ extra_rdoc_files:
83
+ - History.txt
84
+ - Manifest.txt
85
+ - README.rdoc
86
+ - README.txt
87
+ files:
88
+ - HACKNOTES
89
+ - History.txt
90
+ - lib
91
+ - lib/reddy
92
+ - lib/reddy/libxml_hacks.rb
93
+ - lib/reddy/rexml_hacks.rb
94
+ - lib/reddy/n3_grammar.treetop
95
+ - lib/reddy/uriref.rb
96
+ - lib/reddy/rdfxmlparser.rb
97
+ - lib/reddy/n3parser.rb
98
+ - lib/reddy/exceptions
99
+ - lib/reddy/exceptions/about_each_exception.rb
100
+ - lib/reddy/exceptions/uri_relative_exception.rb
101
+ - lib/reddy/namespace.rb
102
+ - lib/reddy/graph.rb
103
+ - lib/reddy/bnode.rb
104
+ - lib/reddy/triple.rb
105
+ - lib/reddy/rdfaparser.rb
106
+ - lib/reddy/literal.rb
107
+ - lib/reddy.rb
108
+ - Manifest.txt
109
+ - Rakefile
110
+ - README.rdoc
111
+ - README.txt
112
+ - reddy.gemspec
113
+ - spec
114
+ - spec/uriref_spec.rb
115
+ - spec/rdfa_parser_spec.rb
116
+ - spec/n3parser_spec.rb
117
+ - spec/graph_spec.rb
118
+ - spec/literal_spec.rb
119
+ - spec/bnode_spec.rb
120
+ - spec/triple_spec.rb
121
+ - spec/parser_spec.rb
122
+ - spec/rexml_hacks_spec.rb
123
+ - spec/namespaces_spec.rb
124
+ - tasks
125
+ - test
126
+ - test/xml.rdf
127
+ - test/n3_tests
128
+ - test/n3_tests/misc
129
+ - test/n3_tests/misc/on_now-01.nt
130
+ - test/n3_tests/misc/on_now-01.n3
131
+ - test/n3_tests/n3p
132
+ - test/n3_tests/n3p/simple-07.nt
133
+ - test/n3_tests/n3p/simple-05.n3
134
+ - test/n3_tests/n3p/simple-06.n3
135
+ - test/n3_tests/n3p/simple-07.n3
136
+ - test/n3_tests/n3p/simple-06.nt
137
+ - test/n3_tests/n3p/simple-02.nt
138
+ - test/n3_tests/n3p/simple-04.nt
139
+ - test/n3_tests/n3p/simple-02.n3
140
+ - test/n3_tests/n3p/simple-03.nt
141
+ - test/n3_tests/n3p/simple-01.nt
142
+ - test/n3_tests/n3p/simple-01.n3
143
+ - test/n3_tests/n3p/simple-04.n3
144
+ - test/n3_tests/n3p/simple-03.n3
145
+ - test/n3_tests/n3p/simple-05.nt
146
+ - test/n3_tests/lcsh
147
+ - test/n3_tests/lcsh/sh85082139.nt
148
+ - test/n3_tests/lcsh/sh85118553.nt
149
+ - test/n3_tests/lcsh/sh85118553.n3
150
+ - test/n3_tests/lcsh/sh85062913.n3
151
+ - test/n3_tests/lcsh/sh85082139.n3
152
+ - test/n3_tests/lcsh/sh85062913.nt
153
+ - test/perf_test
154
+ - test/perf_test/tommorris.rdf
155
+ - test/perf_test/test.rb
156
+ - test/rdf_tests
157
+ - test/rdf_tests/xml-literal-mixed.rdf
158
+ - test/rdf_tests/xml-literal-mixed.nt
159
+ - test/rdf_tests/tm_001.nt
160
+ - test/rdf_tests/cc197bad-dc9c-440d-a5b5-d52ba2e14234.rdf
161
+ - test/rdf_tests/tm_001.rdf
162
+ - test/rdf_tests/cc197bad-dc9c-440d-a5b5-d52ba2e14234.nt
163
+ - test/test_helper.rb
164
+ - test/test_uris.rb
165
+ - test/test_reddy.rb
166
+ - test/longtests_spec.rb
167
+ - test/ruby_fundamentals.spec.rb
168
+ has_rdoc: true
169
+ homepage: http://github.com/tommorris/reddy
170
+ post_install_message:
171
+ rdoc_options:
172
+ - --main
173
+ - README.txt
174
+ require_paths:
175
+ - lib
176
+ required_ruby_version: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: "0"
181
+ version:
182
+ required_rubygems_version: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - ">="
185
+ - !ruby/object:Gem::Version
186
+ version: "0"
187
+ version:
188
+ requirements: []
189
+
190
+ rubyforge_project: reddy
191
+ rubygems_version: 1.3.0
192
+ signing_key:
193
+ specification_version: 2
194
+ summary: Reddy is an RDF library for Ruby.
195
+ test_files:
196
+ - test/test_helper.rb
197
+ - test/test_uris.rb
198
+ - test/test_reddy.rb