class Falcon::Configuration::Loader
def host(name, *parents, &block)
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