class ChefConfig::Config

def self.embedded_dir

omnibus. This is used to locate the cacert.pem file on windows.
"embedded" directory which contains all of the software packaged with
If installed via an omnibus installer, this gives the path to the
def self.embedded_dir
  Pathname.new(_this_file).ascend do |path|
    if path.basename.to_s == "embedded"
      return path.to_s
    end
  end
  nil
end