Sha256: b1a8fe130af5cfb1ffd62442a0c58fe583c39b8b64857fa8528c5463e5f113a4

Contents?: true

Size: 1 KB

Versions: 188

Compression:

Stored size: 1 KB

Contents

# frozen_string_literal: true

require "zlib"
require "stringio"

module ActiveSupport
  # 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

188 entries across 174 versions & 23 rubygems

Version Path
activesupport-7.0.8.6 lib/active_support/gzip.rb
activesupport-6.1.7.10 lib/active_support/gzip.rb
activesupport-6.1.7.9 lib/active_support/gzip.rb
activesupport-7.0.8.5 lib/active_support/gzip.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.8.4/lib/active_support/gzip.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/gzip.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/gzip.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/gzip.rb
activesupport-7.0.8.4 lib/active_support/gzip.rb
activesupport-6.1.7.8 lib/active_support/gzip.rb
activesupport-7.0.8.1 lib/active_support/gzip.rb
activesupport-6.1.7.7 lib/active_support/gzip.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/gzip.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/gzip.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-7.0.3.1/lib/active_support/gzip.rb
activesupport-7.0.8 lib/active_support/gzip.rb
activesupport-7.0.7.2 lib/active_support/gzip.rb
activesupport-6.1.7.6 lib/active_support/gzip.rb
activesupport-7.0.7.1 lib/active_support/gzip.rb
activesupport-6.1.7.5 lib/active_support/gzip.rb