class File

def self.dirname(path)

def self.dirname(path)
  (offset = path.rindex SEPARATOR) ? path[0..(offset - 1)] : '.'
end