class Metrics::Config
def self.load(path)
@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