Class: HTTP::Features::AutoDeflate::GzippedBody
- Inherits:
-
CompressedBody
- Object
- Request::Body
- CompressedBody
- HTTP::Features::AutoDeflate::GzippedBody
- Defined in:
- lib/http/features/auto_deflate.rb
Defined Under Namespace
Classes: BlockIO
Instance Attribute Summary
Attributes inherited from Request::Body
Instance Method Summary collapse
Methods inherited from CompressedBody
Methods inherited from Request::Body
#==, #each, #initialize, #size
Constructor Details
This class inherits a constructor from HTTP::Features::AutoDeflate::CompressedBody
Instance Method Details
#compress(&block) ⇒ Object
95 96 97 98 99 100 |
# File 'lib/http/features/auto_deflate.rb', line 95 def compress(&block) gzip = Zlib::GzipWriter.new(BlockIO.new(block)) @body.each { |chunk| gzip.write(chunk) } ensure gzip.finish end |