class Falcon::Configuration::Loader
def self.load_file(configuration, path)
@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