class Falcon::Configuration::Loader

def host(name, *parents, &block)

@parameter name [String] The name of the environment, usually a hostname.
Adds `root` and `authority` keys.
Define a host with the specified name.
def host(name, *parents, &block)
	environment = merge(name, *parents, &block)
	
	environment[:root] = @root
	environment[:authority] = name
	
	@configuration.add(environment.flatten)
end