class VFS::YAMLVFSEntry

A general purpose pseudo-structure. @abstract

Attributes

r_path[R]
v_path[R]

Public Class Methods

new(v_path, r_path, directory: false) click to toggle source
# File lib/yaml-vfs/yaml_vfs.rb, line 16
def initialize(v_path, r_path, directory: false)
  @v_path = v_path
  @r_path = r_path
  @directory = directory
end

Public Instance Methods

directory?() click to toggle source
# File lib/yaml-vfs/yaml_vfs.rb, line 12
def directory?
  @directory
end