lib/vos/drivers/local.rb in vos-0.3.13 vs lib/vos/drivers/local.rb in vos-0.3.14
- old
+ new
@@ -1,17 +1,20 @@
require 'vfs/storages/local'
module Vos
module Drivers
- class Local < Abstract
+ class Local
+ def initialize root = ''
+ @root = root
+ end
+
#
# Vfs
#
include Vfs::Storages::Local::LocalVfsHelper
def open &block
block.call self if block
end
- alias_method :open_fs, :open
def close; end
#
# Shell
\ No newline at end of file