class ChefConfig::PathHelper

def self.path_separator

def self.path_separator
  if ChefUtils.windows?
    File::ALT_SEPARATOR || BACKSLASH
  else
    File::SEPARATOR
  end
end