Sha256: 31e522e55f18c8ace685ed6e3e18d4154a053a789732a0466617b1be24585afa

Contents?: true

Size: 994 Bytes

Versions: 29

Compression:

Stored size: 994 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

29 entries across 28 versions & 5 rubygems

Version Path
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/activesupport-5.0.7.1/lib/active_support/gzip.rb
activesupport-5.0.7.2 lib/active_support/gzip.rb
activesupport-5.0.7.1 lib/active_support/gzip.rb
activesupport-5.0.7 lib/active_support/gzip.rb
activesupport-5.0.6 lib/active_support/gzip.rb
activesupport-5.0.6.rc1 lib/active_support/gzip.rb
activesupport-5.0.5 lib/active_support/gzip.rb
activesupport-5.0.5.rc2 lib/active_support/gzip.rb
activesupport-5.0.5.rc1 lib/active_support/gzip.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/gzip.rb
tdiary-5.0.5 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/gzip.rb
activesupport-5.0.4 lib/active_support/gzip.rb
activesupport-5.0.4.rc1 lib/active_support/gzip.rb
activesupport-5.0.3 lib/active_support/gzip.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activesupport-5.0.2/lib/active_support/gzip.rb
lazy_record-0.2.1 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/gzip.rb
lazy_record-0.2.0 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/gzip.rb
lazy_record-0.1.9 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/gzip.rb
lazy_record-0.1.8 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/gzip.rb
lazy_record-0.1.7 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/gzip.rb