class Pathutil

def absolute

--
Make a path absolute
--
def absolute
  return self if absolute?
  self.class.new("/").join(
    @path
  )
end