class Overapp::Load::LocalDir

Public Instance Methods

load(base,ops) click to toggle source
# File lib/overapp/load/types/local_dir.rb, line 6
def load(base,ops)
  if Overapp::Project.project? path
    Project.new(:descriptor => path)
  else
    RawDir.new(:descriptor => path)
  end
end
path() click to toggle source
# File lib/overapp/load/types/local_dir.rb, line 4
def path; Overapp.to_proper_dir(descriptor); end