fsdb 0.7.0 → 0.7.1
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/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.
|