class Standard::CreatesConfigStore::ConfiguresIgnoredPaths

def absolutify(config_root, path)

def absolutify(config_root, path)
  if !absolute?(path)
    File.expand_path(File.join(config_root || Dir.pwd, path))
  else
    path
  end
end