class Protocol::HTTP::Body::Inflate
def self.for(body, window_size = GZIP)
@parameter body [Readable] the body to wrap.
Create a new body which decompresses the given body using the GZIP algorithm by default.
def self.for(body, window_size = GZIP) self.new(body, Zlib::Inflate.new(window_size)) end