class ChefConfig::PathHelper

def self.relative_path_from(from, to, windows: ChefUtils.windows?)

def self.relative_path_from(from, to, windows: ChefUtils.windows?)
  Pathname.new(cleanpath(to, windows: windows)).relative_path_from(Pathname.new(cleanpath(from, windows: windows)))
end