class Falcon::Configuration::Loader

def initialize(configuration, root = nil)

@parameter root [String] The file-system root path for relative path computations.
@parameter configuration [Configuration]
Any environments generated by the loader will be added to the configuration.
Initialize the loader, attached to a specific configuration instance.
def initialize(configuration, root = nil)
	@loaded = {}
	@configuration = configuration
	@environments = {}
	@root = root
end