class Falcon::Configuration

def each

def each
	return to_enum unless block_given?
	
	@environments.each do |name, environment|
		if environment.include?(:authority)
			yield environment
		end
	end
end