fsdb 0.7.0 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/lib/fsdb/database.rb +2 -1
- metadata +1 -1
data/History.txt
CHANGED
data/lib/fsdb/database.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'fileutils'
|
2
|
+
require 'thread'
|
2
3
|
require 'fsdb/platform'
|
3
4
|
require 'fsdb/modex'
|
4
5
|
require 'fsdb/file-lock'
|
@@ -7,7 +8,7 @@ require 'fsdb/formats'
|
|
7
8
|
module FSDB
|
8
9
|
include Formats
|
9
10
|
|
10
|
-
FSDB::VERSION = "0.7.
|
11
|
+
FSDB::VERSION = "0.7.1"
|
11
12
|
|
12
13
|
# A thread-safe, process-safe object database class which uses the
|
13
14
|
# native file system as its back end and allows multiple file formats.
|