class Metrics::Config

def self.load(path)

@returns [Config] The loaded configuration.
@parameter path [String] The path to the configuration file.
Load the configuration from the given path.
def self.load(path)
	config = self.new
	
	if File.exist?(path)
		config.instance_eval(File.read(path), path)
	end
	
	return config
end