rdf-sesame 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/CREDITS ADDED
File without changes
data/README CHANGED
@@ -11,8 +11,8 @@ Documentation
11
11
 
12
12
  * {RDF::Sesame}
13
13
  * {RDF::Sesame::Connection}
14
- * {RDF::Sesame::Repository}
15
14
  * {RDF::Sesame::Server}
15
+ * {RDF::Sesame::Repository}
16
16
 
17
17
  This adapter implements the [`RDF::Repository`][RDF::Repository] interface;
18
18
  refer to the relevant RDF.rb API documentation for further usage instructions.
@@ -46,8 +46,8 @@ Caveats
46
46
  Dependencies
47
47
  ------------
48
48
 
49
- * [RDF.rb](http://rubygems.org/gems/rdf) (>= 0.2.2)
50
- * [JSON](http://rubygems.org/gems/json_pure) (>= 1.4.3)
49
+ * [RDF.rb](http://rubygems.org/gems/rdf) (>= 0.3.0)
50
+ * [JSON](http://rubygems.org/gems/json_pure) (>= 1.4.2)
51
51
 
52
52
  Installation
53
53
  ------------
@@ -64,21 +64,31 @@ To get a local working copy of the development repository, do:
64
64
 
65
65
  % git clone git://github.com/bendiken/rdf-sesame.git
66
66
 
67
- Alternatively, you can download the latest development version as a tarball
68
- as follows:
67
+ Alternatively, download the latest development version as a tarball as
68
+ follows:
69
69
 
70
70
  % wget http://github.com/bendiken/rdf-sesame/tarball/master
71
71
 
72
+ Mailing List
73
+ ------------
74
+
75
+ * <http://lists.w3.org/Archives/Public/public-rdf-ruby/>
76
+
72
77
  Author
73
78
  ------
74
79
 
75
- * [Arto Bendiken](mailto:arto.bendiken@gmail.com) - <http://ar.to/>
80
+ * [Arto Bendiken](http://github.com/bendiken) - <http://ar.to/>
81
+
82
+ Contributors
83
+ ------------
84
+
85
+ Refer to the accompanying {file:CREDITS} file.
76
86
 
77
87
  License
78
88
  -------
79
89
 
80
- `RDF::Sesame` is free and unencumbered public domain software. For more
81
- information, see <http://unlicense.org/> or the accompanying UNLICENSE file.
90
+ This is free and unencumbered public domain software. For more information,
91
+ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
82
92
 
83
93
  [RDF.rb]: http://rdf.rubyforge.org/
84
94
  [RDF::Repository]: http://rdf.rubyforge.org/RDF/Repository.html
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.3.0
@@ -33,14 +33,12 @@ module RDF::Sesame
33
33
  # end
34
34
  #
35
35
  # @example Performing an HTTP GET on a Sesame server
36
- # url = RDF::URI("http://localhost:8080/openrdf-sesame")
37
36
  # RDF::Sesame::Connection.open(url) do |conn|
38
37
  # conn.get("/openrdf-sesame/protocol") do |response|
39
38
  # version = response.body.to_i
40
39
  # end
41
40
  # end
42
41
  #
43
- # @see RDF::Sesame
44
42
  # @see http://ruby-doc.org/core/classes/Net/HTTP.html
45
43
  class Connection
46
44
  # @return [RDF::URI]
@@ -5,6 +5,12 @@ module RDF::Sesame
5
5
  # Instances of this class represent RDF repositories on Sesame-compatible
6
6
  # servers.
7
7
  #
8
+ # This class implements the [`RDF::Repository`][RDF::Repository]
9
+ # interface; refer to the relevant RDF.rb API documentation for further
10
+ # usage instructions.
11
+ #
12
+ # [RDF::Repository]: http://rdf.rubyforge.org/RDF/Repository.html
13
+ #
8
14
  # @example Opening a Sesame repository (1)
9
15
  # url = "http://localhost:8080/openrdf-sesame/repositories/SYSTEM"
10
16
  # repository = RDF::Sesame::Repository.new(url)
@@ -17,9 +23,8 @@ module RDF::Sesame
17
23
  # server = RDF::Sesame::Server.new("http://localhost:8080/openrdf-sesame")
18
24
  # repository = server.repository(:SYSTEM)
19
25
  #
20
- # @see RDF::Sesame
21
- # @see http://rdf.rubyforge.org/RDF/Repository.html
22
26
  # @see http://www.openrdf.org/doc/sesame2/system/ch08.html
27
+ # @see http://rdf.rubyforge.org/RDF/Repository.html
23
28
  class Repository < RDF::Repository
24
29
  # @return [RDF::URI]
25
30
  attr_reader :url
@@ -33,7 +33,6 @@ module RDF::Sesame
33
33
  # server.repository(:SYSTEM) #=> RDF::Sesame::Repository(SYSTEM)
34
34
  # server[:SYSTEM] #=> RDF::Sesame::Repository(SYSTEM)
35
35
  #
36
- # @see RDF::Sesame
37
36
  # @see http://www.openrdf.org/doc/sesame2/system/ch08.html
38
37
  class Server
39
38
  include Enumerable
@@ -1,7 +1,7 @@
1
1
  module RDF; module Sesame
2
2
  module VERSION
3
3
  MAJOR = 0
4
- MINOR = 2
4
+ MINOR = 3
5
5
  TINY = 0
6
6
  EXTRA = nil
7
7
 
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 2
7
+ - 3
8
8
  - 0
9
- version: 0.2.0
9
+ version: 0.3.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Arto Bendiken
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-07-08 00:00:00 +02:00
17
+ date: 2010-12-27 00:00:00 +01:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -22,13 +22,13 @@ dependencies:
22
22
  prerelease: false
23
23
  requirement: &id001 !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ~>
25
+ - - ">="
26
26
  - !ruby/object:Gem::Version
27
27
  segments:
28
28
  - 1
29
29
  - 4
30
- - 3
31
- version: 1.4.3
30
+ - 2
31
+ version: 1.4.2
32
32
  type: :runtime
33
33
  version_requirements: *id001
34
34
  - !ruby/object:Gem::Dependency
@@ -40,9 +40,9 @@ dependencies:
40
40
  - !ruby/object:Gem::Version
41
41
  segments:
42
42
  - 0
43
- - 2
44
- - 2
45
- version: 0.2.2
43
+ - 3
44
+ - 0
45
+ version: 0.3.0
46
46
  type: :runtime
47
47
  version_requirements: *id002
48
48
  - !ruby/object:Gem::Dependency
@@ -54,9 +54,9 @@ dependencies:
54
54
  - !ruby/object:Gem::Version
55
55
  segments:
56
56
  - 0
57
- - 5
58
- - 8
59
- version: 0.5.8
57
+ - 6
58
+ - 0
59
+ version: 0.6.0
60
60
  type: :development
61
61
  version_requirements: *id003
62
62
  - !ruby/object:Gem::Dependency
@@ -67,10 +67,10 @@ dependencies:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
69
  segments:
70
+ - 2
70
71
  - 1
71
- - 3
72
72
  - 0
73
- version: 1.3.0
73
+ version: 2.1.0
74
74
  type: :development
75
75
  version_requirements: *id004
76
76
  - !ruby/object:Gem::Dependency
@@ -82,9 +82,9 @@ dependencies:
82
82
  - !ruby/object:Gem::Version
83
83
  segments:
84
84
  - 0
85
- - 2
86
- - 2
87
- version: 0.2.2
85
+ - 3
86
+ - 0
87
+ version: 0.3.0
88
88
  type: :development
89
89
  version_requirements: *id005
90
90
  description: RDF.rb plugin providing a Sesame 2.0 storage adapter.
@@ -97,6 +97,7 @@ extra_rdoc_files: []
97
97
 
98
98
  files:
99
99
  - AUTHORS
100
+ - CREDITS
100
101
  - README
101
102
  - UNLICENSE
102
103
  - VERSION