Sha256: 3a38199a0f9d5017f3bfe1dbd77d3df4e27798535783e9d442db3b226d992c99
Contents?: true
Size: 343 Bytes
Versions: 27
Compression:
Stored size: 343 Bytes
Contents
module IOStreams module Gzip class Reader < IOStreams::Reader # Read from a gzip stream, decompressing the contents as it is read def self.stream(input_stream, original_file_name: nil, &block) io = ::Zlib::GzipReader.new(input_stream) block.call(io) ensure io&.close end end end end
Version data entries
27 entries across 27 versions & 1 rubygems