tdb 0.6.1.5.g0e13 → 0.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.wrongdoc.yml +2 -1
- data/GIT-VERSION-GEN +1 -1
- data/HACKING +3 -3
- data/README +18 -1
- data/tdb.gemspec +2 -2
- metadata +26 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 815c9db67e0e85cacb03bbec1523d8e87e5f75b6
|
4
|
+
data.tar.gz: 05fb9d0237d5bfff649c9adc311c79d957b4e62a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b488b1912401a0f4afdda2cafa64f6c5b93e102d5f440a9ae6eb09161e92f52eb8f3a6d4e55527f46f6b8b8d28d099ce56f6044d3ebece0099ca508ae8247e6c
|
7
|
+
data.tar.gz: 243c4edb53787b77e9af38282d69ef6bfe26cbecb7b234da4849f89cda5d51fa06f28e026cb3a2b95bb6fd3cbf60fe74f84fb06016490da61a7402d4708c25f5
|
data/.wrongdoc.yml
CHANGED
@@ -2,5 +2,6 @@
|
|
2
2
|
cgit_url: http://bogomips.org/ruby-tdb.git
|
3
3
|
git_url: git://bogomips.org/ruby-tdb.git
|
4
4
|
rdoc_url: http://bogomips.org/ruby-tdb/
|
5
|
-
|
5
|
+
ml_url: http://bogomips.org/ruby-tdb-public/
|
6
|
+
public_email: ruby-tdb-public@bogomips.org
|
6
7
|
private_email: ruby-tdb@bogomips.org
|
data/GIT-VERSION-GEN
CHANGED
data/HACKING
CHANGED
@@ -17,7 +17,7 @@ characters wide) and NOT the indentation style of Matz Ruby.
|
|
17
17
|
|
18
18
|
Contributions are welcome in the form of patches, pull requests, code
|
19
19
|
review, testing, documentation, user support or any other feedback. The
|
20
|
-
{Ruby TDB mailing list}[mailto:ruby
|
20
|
+
{Ruby TDB mailing list}[mailto:ruby-tdb-public@bogomips.org] is the central
|
21
21
|
coordination point for all user and developer feedback and bug reports.
|
22
22
|
|
23
23
|
=== Submitting Patches
|
@@ -41,8 +41,8 @@ don't email the git mailing list or maintainer with Ruby TDB patches :)
|
|
41
41
|
* Do not send HTML mail, they will be mercilessly deleted.
|
42
42
|
|
43
43
|
When referencing mailing list posts, use
|
44
|
-
"http://
|
45
|
-
remains searchable even if
|
44
|
+
"http://bogomips.org/ruby-tdb-public/m/$MESSAGE_ID.html" if possible since the
|
45
|
+
Message-ID remains searchable even if a particular server becomes unavailable.
|
46
46
|
|
47
47
|
== Running Development Versions
|
48
48
|
|
data/README
CHANGED
@@ -85,7 +85,24 @@ from git.
|
|
85
85
|
== Contact
|
86
86
|
|
87
87
|
All feedback (bug reports, user/development dicussion, patches, pull
|
88
|
-
requests) go to the
|
88
|
+
requests) go to the mailing list:
|
89
|
+
|
90
|
+
ruby-tdb-public@bogomips.org
|
91
|
+
|
92
|
+
No subscription is required to post, and HTML will be considered spam
|
93
|
+
and rejected. Subscription is optional, you may subscribe by sending
|
94
|
+
a blank email to:
|
95
|
+
|
96
|
+
ruby-tdb-public+subscribe@bogomips.org
|
97
|
+
|
98
|
+
And following instructions in the confirmation email.
|
99
|
+
Similarly, you may unsubscribe by sending an email to:
|
100
|
+
|
101
|
+
ruby-tdb-public+unsubscribe@bogomips.org
|
102
|
+
|
103
|
+
Mailing list archives are available at:
|
104
|
+
|
105
|
+
http://bogomips.org/ruby-tdb-public/
|
89
106
|
|
90
107
|
For the latest on tdb releases, you may check our NEWS page (and
|
91
108
|
subscribe to our Atom feed).
|
data/tdb.gemspec
CHANGED
@@ -10,14 +10,14 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.homepage = 'http://bogomips.org/ruby-tdb/'
|
11
11
|
s.authors = ["Ruby tdb hackers"]
|
12
12
|
s.description = readme_description
|
13
|
-
s.email = %q{ruby
|
13
|
+
s.email = %q{ruby-tdb@bogomips.org}
|
14
14
|
s.extra_rdoc_files = extra_rdoc_files(manifest)
|
15
15
|
s.files = manifest
|
16
16
|
s.rdoc_options = rdoc_options
|
17
|
-
s.rubyforge_project = %q{qrp}
|
18
17
|
s.summary = summary
|
19
18
|
s.test_files = Dir['test/test_*.rb']
|
20
19
|
s.extensions = %w(ext/tdb/extconf.rb)
|
21
20
|
s.add_development_dependency('wrongdoc', '~> 1.8', '>= 1.8.1')
|
21
|
+
s.add_development_dependency('test-unit', '>= 2.0', '< 4.0')
|
22
22
|
s.licenses = %w(LGPLv2.1+)
|
23
23
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tdb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ruby tdb hackers
|
@@ -30,12 +30,32 @@ dependencies:
|
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 1.8.1
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: test-unit
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '2.0'
|
40
|
+
- - "<"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '4.0'
|
43
|
+
type: :development
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '2.0'
|
50
|
+
- - "<"
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '4.0'
|
33
53
|
description: |-
|
34
54
|
TDB is much like other DBM implementations, except it allows concurrent
|
35
55
|
writer processes. TDB was initially developed for Samba, but is used by
|
36
56
|
other projects as well. These Ruby bindings allow Ruby apps to read and
|
37
57
|
write to the same databases used by Samba!
|
38
|
-
email: ruby
|
58
|
+
email: ruby-tdb@bogomips.org
|
39
59
|
executables: []
|
40
60
|
extensions:
|
41
61
|
- ext/tdb/extconf.rb
|
@@ -106,12 +126,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
106
126
|
version: '0'
|
107
127
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
128
|
requirements:
|
109
|
-
- - "
|
129
|
+
- - ">="
|
110
130
|
- !ruby/object:Gem::Version
|
111
|
-
version:
|
131
|
+
version: '0'
|
112
132
|
requirements: []
|
113
|
-
rubyforge_project:
|
114
|
-
rubygems_version: 2.
|
133
|
+
rubyforge_project:
|
134
|
+
rubygems_version: 2.2.2
|
115
135
|
signing_key:
|
116
136
|
specification_version: 4
|
117
137
|
summary: Trivial Database bindings for Ruby
|