rdf-do 1.0.0 → 1.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 (4) hide show
  1. checksums.yaml +6 -14
  2. data/README +28 -22
  3. data/VERSION +1 -1
  4. metadata +24 -24
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- YTMyMjI3ZmUzOTkxNmVjMDZhNWJhMzFmOTJlZDJlZjM4MjlhYzEzMQ==
5
- data.tar.gz: !binary |-
6
- ZjZmODkwOTU5ZjFjOTYyMDEwM2M5MzY5NWZhODRiMmM1YjA1ZWI4Zg==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- NTRkMTAzOTVmNDI3OTJjMzhlYTUyOWQ4ZjBlZDcwMDc3MDQ2N2VhYmE4ODY1
10
- MDFhMGVmYmE0OWZlNGViMzI5YzUwZDE3ZDNhYTI2ZTRjMzU4MWUzNjI4MmEw
11
- OTVhZmEyMGNlOTIyODYzYmYxZTMyNTAxZDk0YTI4MjdiNTQ2ZGM=
12
- data.tar.gz: !binary |-
13
- YzQyY2VmNWRiNWE3OGQzNmRiYTYyNGZlZjNhYmRlYWYwNjRlMmRiOTI5YWUy
14
- NmQ4NWUxMGRlZThmMzE2YTJjZGE2ZDA0OGY1ZTBmNmM1NzdlNmEyNDNiNDZh
15
- ZmVmODM3YmM2NTYxYTZmYTJmMzI5YWM1Y2UxNGYxNTA3OWNmMzA=
2
+ SHA1:
3
+ metadata.gz: d3f5a7e32c1a1f8ad358bb472b9787e954b05248
4
+ data.tar.gz: c466c119908f87fd26870416c9a50b480af5f945
5
+ SHA512:
6
+ metadata.gz: b033431e5e9d72ebcdcdc345459d5576aa7f49bc1cb1ecffe263af640077f3996feeac1fd3ca4294724de44737dfe0729fc5f51a19b3c722ffaa8da82feb51b1
7
+ data.tar.gz: 907ecb2401a5f72384c7b24a65b251cd73f3e6bf0c38a563556e7f7af00eb211c3310c644f86b16fe35c6d25e3cad9a416594e5937f3f8866b70113525c4d74f
data/README CHANGED
@@ -1,6 +1,6 @@
1
1
  # RDF::DataObjects
2
2
 
3
- DataObjects-backed RDF.rb repository, aiming for a simple use case and
3
+ DataObjects-backed [RDF.rb][] repository, aiming for a simple use case and
4
4
  currently targeting SQLite and Postgres.
5
5
 
6
6
  * <http://github.com/ruby-rdf/rdf-do>
@@ -27,15 +27,15 @@ different databases are *just* different enough with their handling of unique
27
27
  constraints that some database-specific work is required for a new adapter, but
28
28
  it's not much.
29
29
 
30
- ## Installation:
30
+ ## Installation
31
31
 
32
32
  The greatly preferred installation method is via RubyGems:
33
33
 
34
34
  $ sudo gem install rdf-do
35
35
 
36
- Ruby 1.8.6 is not supported, but the tests pass with the backports gem. Godspeed.
36
+ Requires Ruby >= 1.9.2
37
37
 
38
- ## Connecting:
38
+ ## Connecting
39
39
  require 'rdf'
40
40
  require 'rdf/do'
41
41
  require 'do_postgres' # gem install do_postgres
@@ -44,10 +44,10 @@ Ruby 1.8.6 is not supported, but the tests pass with the backports gem. Godspee
44
44
  repo = RDF::DataObjects::Repository.new "sqlite3:test.db"
45
45
 
46
46
 
47
- ## Using:
47
+ ## Using
48
48
 
49
- Your repository is a fully-functional RDF.rb `RDF::Repository`. As with any
50
- RDF.rb repository, this includes the mixins `RDF::Enumerable`, `RDF::Mutable`,
49
+ Your repository is a fully-functional [RDF.rb][] `RDF::Repository`. As with any
50
+ [RDF.rb][] repository, this includes the mixins `RDF::Enumerable`, `RDF::Mutable`,
51
51
  `RDF::Durable`, and `RDF::Queryable`. Please see <http://rdf.rubyforge.org/RDF/Repository.html> for
52
52
  more information.
53
53
 
@@ -86,20 +86,22 @@ Example:
86
86
  repo.count
87
87
  #=> 10
88
88
 
89
+ ## Contributing
90
+ This repository uses [Git Flow](https://github.com/nvie/gitflow) to mange development and release activity. All submissions _must_ be on a feature branch based on the _develop_ branch to ease staging and integration.
89
91
 
92
+ * Do your best to adhere to the existing coding conventions and idioms.
93
+ * Don't use hard tabs, and don't leave trailing whitespace on any line.
94
+ * Do document every method you add using [YARD][] annotations. Read the
95
+ [tutorial][YARD-GS] or just look at the existing code for examples.
96
+ * Don't touch the `.gemspec`, `VERSION` or `AUTHORS` files. If you need to
97
+ change them, do so on your private branch only.
98
+ * Do feel free to add yourself to the `CREDITS` file and the corresponding
99
+ list in the the `README`. Alphabetical order applies.
100
+ * Do note that in order for us to merge any non-trivial changes (as a rule
101
+ of thumb, additions larger than about 15 lines of code), we need an
102
+ explicit [public domain dedication][PDD] on record from you.
90
103
 
91
- ### Developing
92
-
93
- The main project page is on Github, at <http://github.com/ruby-rdf/rdf-do>. You
94
- can get a working copy of the source tree with:
95
-
96
- $ git clone git://github.com/ruby-rdf/rdf-do.git
97
-
98
- Or with:
99
-
100
- $ wget http://github.com/ruby-rdf/rdf-do/tarball/master
101
-
102
- ### Support
104
+ ## Support
103
105
 
104
106
  The preferred method to report issues is the issue queue at
105
107
  <http://github.com/ruby-rdf/rdf-do/issues>. You'll get the the most attention if
@@ -108,8 +110,12 @@ you submit a failing test for a bug, or a pending test for a feature.
108
110
  We'd also like to hear from you on the mailing list:
109
111
  <http://lists.w3.org/Archives/Public/public-rdf-ruby>
110
112
 
111
- ### Miscellany
113
+ ## Miscellany
112
114
 
113
- * Author: Ben Lavender | <blavender@gmail.com> | <http://bhuga.net> | <http://blog.datagraph.org>
114
- * 'License': RDF::DataObjects is free and unemcumbered software released into the public domain. For more information, see the included UNLICENSE file.
115
+ * Author: Ben Lavender | <blavender@gmail.com> | <http://bhuga.net> | <http://blog.datagraph.org>
116
+ * 'License': RDF::DataObjects is free and unemcumbered software released into the public domain. For more information, see the included UNLICENSE file.
115
117
 
118
+ [RDF.rb]: http://rubygems.org/gems/rdf
119
+ [YARD]: http://yardoc.org/
120
+ [YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md
121
+ [PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.1.0
metadata CHANGED
@@ -1,111 +1,111 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdf-do
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Lavender
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-06-16 00:00:00.000000000 Z
11
+ date: 2013-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rdf
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - '>='
18
18
  - !ruby/object:Gem::Version
19
- version: '1.0'
19
+ version: 1.1.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - '>='
25
25
  - !ruby/object:Gem::Version
26
- version: '1.0'
26
+ version: 1.1.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: data_objects
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ! '>='
31
+ - - '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: 0.10.11
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ! '>='
38
+ - - '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: 0.10.11
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: do_sqlite3
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ! '>='
45
+ - - '>='
46
46
  - !ruby/object:Gem::Version
47
47
  version: 0.10.11
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ! '>='
52
+ - - '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: 0.10.11
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: do_postgres
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ! '>='
59
+ - - '>='
60
60
  - !ruby/object:Gem::Version
61
61
  version: 0.10.11
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ! '>='
66
+ - - '>='
67
67
  - !ruby/object:Gem::Version
68
68
  version: 0.10.11
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rdf-spec
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ! '>='
73
+ - - '>='
74
74
  - !ruby/object:Gem::Version
75
- version: '1.0'
75
+ version: 1.1.0
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ! '>='
80
+ - - '>='
81
81
  - !ruby/object:Gem::Version
82
- version: '1.0'
82
+ version: 1.1.0
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rspec
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ! '>='
87
+ - - '>='
88
88
  - !ruby/object:Gem::Version
89
89
  version: 2.12.0
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ! '>='
94
+ - - '>='
95
95
  - !ruby/object:Gem::Version
96
96
  version: 2.12.0
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: yard
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ! '>='
101
+ - - '>='
102
102
  - !ruby/object:Gem::Version
103
103
  version: 0.8.3
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - ! '>='
108
+ - - '>='
109
109
  - !ruby/object:Gem::Version
110
110
  version: 0.8.3
111
111
  description: RDF.rb plugin providing a DataObjects storage adapter.
@@ -133,17 +133,17 @@ require_paths:
133
133
  - lib
134
134
  required_ruby_version: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - ! '>='
136
+ - - '>='
137
137
  - !ruby/object:Gem::Version
138
- version: 1.8.2
138
+ version: 1.9.2
139
139
  required_rubygems_version: !ruby/object:Gem::Requirement
140
140
  requirements:
141
- - - ! '>='
141
+ - - '>='
142
142
  - !ruby/object:Gem::Version
143
143
  version: '0'
144
144
  requirements: []
145
145
  rubyforge_project: rdf
146
- rubygems_version: 2.0.3
146
+ rubygems_version: 2.1.11
147
147
  signing_key:
148
148
  specification_version: 4
149
149
  summary: RDF.rb plugin providing a DataObjects storage adapter.