class Falcon::Command::Virtual

def run(verbose = false)

def run(verbose = false)
	configuration = Configuration.new(verbose)
	
	@paths.each do |path|
		configuration.load_file(path)
	end
	
	hosts = Hosts.new(configuration)
	
	return hosts.run(@options)
end