class Utils::ConfigFile

def configure_from_paths(paths = self.class.config_file_paths)

Parameters:
  • paths (Array) -- an array of file paths pointing to configuration files
def configure_from_paths(paths = self.class.config_file_paths)
  for config_file_path in paths
    parse_config_file config_file_path
  end
end