Sha256: 5d0d971a6e603b9dfbd83b4ab1d9d8f19a484e831014242538d3e7879a7f12f4

Contents?: true

Size: 997 Bytes

Versions: 22

Compression:

Stored size: 997 Bytes

Contents

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

22 entries across 22 versions & 3 rubygems

Version Path
activesupport-5.1.7 lib/active_support/gzip.rb
activesupport-5.1.7.rc1 lib/active_support/gzip.rb
activesupport-5.1.6.2 lib/active_support/gzip.rb
activesupport-5.1.6.1 lib/active_support/gzip.rb
activesupport-5.1.6 lib/active_support/gzip.rb
tdiary-5.0.8 vendor/bundle/gems/activesupport-5.1.5/lib/active_support/gzip.rb
activesupport-5.1.5 lib/active_support/gzip.rb
activesupport-5.1.5.rc1 lib/active_support/gzip.rb
pract6-0.1.0 .gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/gzip.rb
activesupport-5.1.4 lib/active_support/gzip.rb
activesupport-5.1.4.rc1 lib/active_support/gzip.rb
activesupport-5.1.3 lib/active_support/gzip.rb
activesupport-5.1.3.rc3 lib/active_support/gzip.rb
activesupport-5.1.3.rc2 lib/active_support/gzip.rb
activesupport-5.1.3.rc1 lib/active_support/gzip.rb
tdiary-5.0.5 vendor/bundle/gems/activesupport-5.1.2/lib/active_support/gzip.rb
activesupport-5.1.2 lib/active_support/gzip.rb
activesupport-5.1.2.rc1 lib/active_support/gzip.rb
activesupport-5.1.1 lib/active_support/gzip.rb
activesupport-5.1.0 lib/active_support/gzip.rb