sldb 0.1.0 → 0.2.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.
- data/README.tmpl +8 -8
- data/lib/{sldb-0.1.0.rb → sldb-0.2.0.rb} +5 -1
- data/lib/sldb.rb +5 -1
- metadata +2 -3
- data/VERSION +0 -1
data/README.tmpl
CHANGED
@@ -1,20 +1,20 @@
|
|
1
1
|
URLS
|
2
2
|
|
3
|
-
http://raa.ruby-lang.org/search.rhtml?search=sldb
|
4
3
|
http://codeforpeople.com/lib/ruby/sldb
|
4
|
+
http://rubyforge.org/projects/codeforpeople
|
5
5
|
|
6
6
|
ABOUT
|
7
7
|
|
8
8
|
sldb is a multi-thread, multi-process, and nfs safe abstraction of sqlite
|
9
|
-
databases. the sldb module is a class generator for concrete databases.
|
10
|
-
programmer is freed from worrying about 'database locked' errors and
|
9
|
+
databases. the sldb module is a class generator for concrete databases.
|
10
|
+
the programmer is freed from worrying about 'database locked' errors and
|
11
11
|
transactions are automatically retried using a linear cyclical backoff time.
|
12
12
|
in the case where all access is via the generated class sldb can even detect
|
13
|
-
certain bugs in nfs daemons and auto-recover. the class is not limited to
|
14
|
-
use whatsover and can be a useful way to use an embedded sql based
|
15
|
-
in your ruby code with minimal effort while still providing
|
16
|
-
multi-process/multi-thread concurrency - something which is quite difficult
|
17
|
-
using the raw sqlite-ruby interface.
|
13
|
+
certain bugs in nfs daemons and auto-recover. the class is not limited to
|
14
|
+
nfs use whatsover and can be a useful way to use an embedded sql based
|
15
|
+
databases in your ruby code with minimal effort while still providing
|
16
|
+
multi-process/multi-thread concurrency - something which is quite difficult
|
17
|
+
if using the raw sqlite-ruby interface.
|
18
18
|
|
19
19
|
AUTHOR
|
20
20
|
|
@@ -11,7 +11,8 @@ module SLDB
|
|
11
11
|
require 'lockfile'
|
12
12
|
require 'traits'
|
13
13
|
|
14
|
-
VERSION = '0.
|
14
|
+
VERSION = '0.2.0'
|
15
|
+
def version() VERSION end
|
15
16
|
|
16
17
|
module Util
|
17
18
|
#--{{{
|
@@ -1300,3 +1301,6 @@ module SLDB
|
|
1300
1301
|
end
|
1301
1302
|
#--}}}
|
1302
1303
|
end # module SLDB
|
1304
|
+
|
1305
|
+
def SLDB(*a, &b) SLDB.class(*a, &b) end
|
1306
|
+
def sldb(*a, &b) SLDB.class(*a, &b) end
|
data/lib/sldb.rb
CHANGED
@@ -11,7 +11,8 @@ module SLDB
|
|
11
11
|
require 'lockfile'
|
12
12
|
require 'traits'
|
13
13
|
|
14
|
-
VERSION = '0.
|
14
|
+
VERSION = '0.2.0'
|
15
|
+
def version() VERSION end
|
15
16
|
|
16
17
|
module Util
|
17
18
|
#--{{{
|
@@ -1300,3 +1301,6 @@ module SLDB
|
|
1300
1301
|
end
|
1301
1302
|
#--}}}
|
1302
1303
|
end # module SLDB
|
1304
|
+
|
1305
|
+
def SLDB(*a, &b) SLDB.class(*a, &b) end
|
1306
|
+
def sldb(*a, &b) SLDB.class(*a, &b) end
|
metadata
CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: sldb
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.
|
6
|
+
version: 0.2.0
|
7
7
|
date: 2006-10-23 00:00:00.000000 -06:00
|
8
8
|
summary: sldb
|
9
9
|
require_paths:
|
@@ -35,11 +35,10 @@ files:
|
|
35
35
|
- white_box
|
36
36
|
- README
|
37
37
|
- gen_readme.rb
|
38
|
-
- VERSION
|
39
38
|
- gemspec.rb
|
40
39
|
- sample
|
41
40
|
- lib/sldb.rb
|
42
|
-
- lib/sldb-0.
|
41
|
+
- lib/sldb-0.2.0.rb
|
43
42
|
- white_box/test.rb
|
44
43
|
- sample/a.rb
|
45
44
|
- sample/b.rb
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.1.0
|