dshelf 0.2.9 → 0.2.10
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/dshelf.rb +2 -2
- metadata +2 -2
data/lib/dshelf.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
module DistributedShelf
|
2
|
-
VERSION = '0.2.
|
2
|
+
VERSION = '0.2.10'
|
3
3
|
|
4
4
|
@@config = {}
|
5
5
|
|
@@ -17,7 +17,7 @@ module DistributedShelf
|
|
17
17
|
return true unless File.expand_path(file).match(distributed_path).nil?
|
18
18
|
end
|
19
19
|
else
|
20
|
-
return
|
20
|
+
return !File.expand_path(file).match(@@config[:distributed_path]).nil?
|
21
21
|
end
|
22
22
|
false
|
23
23
|
end
|