Sha256: 840209c2273d93683fd2837a6f4305bf337377a00c1f36867f646fd9d82a2bef

Contents?: true

Size: 748 Bytes

Versions: 3

Compression:

Stored size: 748 Bytes

Contents

module Vos
  class Box
    module Vfs
      def open_fs &block
        open &block
      end
      
      def to_entry
        '/'.to_entry_on(self)
      end
      
      def to_file
        to_entry.file
      end
      
      def to_dir
        to_entry
      end
      
      # def [] path
      #   to_entry[path]
      # end
      # alias_method :/, :[]
            
      %w(dir file entry entries [] / tmp).each do |m|
        script = <<-RUBY
          def #{m} *a, &b
            to_entry.#{m} *a, &b
          end
        RUBY
        eval script, binding, __FILE__, __LINE__
      end
    end
  end
end

module Vfs
  class Dir
    def bash cmd, *args      
      storage.bash_without_path "cd #{path} && #{cmd}", *args
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vos-0.1.2 lib/vos/box/vfs.rb
vos-0.1.1 lib/vos/box/vfs.rb
vos-0.1.0 lib/vos/box/vfs.rb