Sha256: 7d1ad22294da7d0c27cbfeabc9563400174c8101aa68974219c149f31f148f85
Contents?: true
Size: 1.03 KB
Versions: 43
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true require "zlib" require "stringio" module ActiveSupport # = Active Support \Gzip # # A convenient wrapper for the zlib standard library that allows # compression/decompression of strings with gzip. # # gzip = ActiveSupport::Gzip.compress('compress me!') # # => "\x1F\x8B\b\x00o\x8D\xCDO\x00\x03K\xCE\xCF-(J-.V\xC8MU\x04\x00R>n\x83\f\x00\x00\x00" # # ActiveSupport::Gzip.decompress(gzip) # # => "compress me!" module Gzip class Stream < StringIO def initialize(*) super set_encoding "BINARY" end def close; rewind; end end # Decompresses a gzipped string. def self.decompress(source) Zlib::GzipReader.wrap(StringIO.new(source), &:read) end # Compresses a string using gzip. def self.compress(source, level = Zlib::DEFAULT_COMPRESSION, strategy = Zlib::DEFAULT_STRATEGY) output = Stream.new gz = Zlib::GzipWriter.new(output, level, strategy) gz.write(source) gz.close output.string end end end
Version data entries
43 entries across 43 versions & 7 rubygems
Version | Path |
---|---|
activesupport-7.1.0.rc2 | lib/active_support/gzip.rb |
activesupport-7.1.0.rc1 | lib/active_support/gzip.rb |
activesupport-7.1.0.beta1 | lib/active_support/gzip.rb |