class ChefConfig::PathHelper

def self.cleanpath(path)

def self.cleanpath(path)
  path = Pathname.new(path).cleanpath.to_s
  # ensure all forward slashes are backslashes
  if ChefConfig.windows?
    path = path.gsub(File::SEPARATOR, path_separator)
  end
  path
end