Method: Protocol::HTTP::Body::ZStream#ratio

Defined in:
lib/protocol/http/body/deflate.rb

#ratioObject



72
73
74
75
76
77
78
# File 'lib/protocol/http/body/deflate.rb', line 72

def ratio
	if @input_length != 0
		@output_length.to_f / @input_length.to_f
	else
		1.0
	end
end