vos 0.3.8 → 0.3.9
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/lib/vos/drivers/ssh_vfs_storage.rb +3 -1
- metadata +2 -2
|
@@ -83,7 +83,9 @@ module Vos
|
|
|
83
83
|
exec "rm -r #{path}"
|
|
84
84
|
end
|
|
85
85
|
|
|
86
|
-
def each_entry path, &block
|
|
86
|
+
def each_entry path, query, &block
|
|
87
|
+
raise "SshVfsStorage not support :each_entry with query!" if query
|
|
88
|
+
|
|
87
89
|
sftp.dir.foreach path do |stat|
|
|
88
90
|
next if stat.name == '.' or stat.name == '..'
|
|
89
91
|
if stat.directory?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vos
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.9
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-
|
|
13
|
+
date: 2011-08-03 00:00:00 +04:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|