class Falcon::Adapters::Input

def each(&block)

each must be called without arguments and only yield Strings.
def each(&block)
	return to_enum unless block_given?
	
	while chunk = gets
		yield chunk
	end
end