class Falcon::Configuration::Loader

def self.load_file(configuration, path)

@oaram path [String] The path to the configuration file, e.g. `falcon.rb`.
@parameter configuration [Configuration]
Load the specified file into the given configuration.
def self.load_file(configuration, path)
	path = File.realpath(path)
	root = File.dirname(path)
	
	loader = self.new(configuration, root)
	
	loader.instance_eval(File.read(path), path)
end