Sha256: be760cf4961a9e57c49cb6c118508548c7b9bb2540ede716a84364457d9baa3c

Contents?: true

Size: 990 Bytes

Versions: 155

Compression:

Stored size: 990 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.new(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

155 entries across 149 versions & 16 rubygems

Version Path
activesupport-4.2.6 lib/active_support/gzip.rb
activesupport-4.1.15.rc1 lib/active_support/gzip.rb
activesupport-4.2.6.rc1 lib/active_support/gzip.rb
activesupport-4.1.14.2 lib/active_support/gzip.rb
activesupport-4.2.5.2 lib/active_support/gzip.rb
activesupport-5.0.0.beta3 lib/active_support/gzip.rb
activesupport-5.0.0.beta2 lib/active_support/gzip.rb
activejob-lock-0.0.2 rails/activesupport/lib/active_support/gzip.rb
activesupport-5.0.0.beta1.1 lib/active_support/gzip.rb
activesupport-4.2.5.1 lib/active_support/gzip.rb
activesupport-4.1.14.1 lib/active_support/gzip.rb
angular-rails4-templates-0.4.1 vendor/ruby/2.1.0/gems/activesupport-4.1.13/lib/active_support/gzip.rb
angular-rails4-templates-0.4.1 vendor/ruby/2.1.0/gems/activesupport-4.2.4/lib/active_support/gzip.rb
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/activesupport-4.2.4/lib/active_support/gzip.rb
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/activesupport-4.1.13/lib/active_support/gzip.rb
tdiary-4.2.1 vendor/bundle/ruby/2.2.0/gems/activesupport-4.2.5/lib/active_support/gzip.rb
tdiary-4.2.1 vendor/bundle/ruby/2.3.0/gems/activesupport-4.2.5/lib/active_support/gzip.rb
activesupport-5.0.0.beta1 lib/active_support/gzip.rb
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/activesupport-4.1.13/lib/active_support/gzip.rb
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/activesupport-4.2.4/lib/active_support/gzip.rb