class Falcon::Command::Host

def configuration

Generate a configuration based on the specified {paths}.
def configuration
	configuration = Configuration.new
	
	@paths.each do |path|
		path = File.expand_path(path)
		configuration.load_file(path)
	end
	
	return configuration
end