class ChefConfig::PathHelper

def self.escapepath(path)

Returns:
  • (String) - the escaped path

Parameters:
  • path (String) -- the path to escape
def self.escapepath(path)
  path.gsub(BACKSLASH, BACKSLASH * 4)
end