Sha256: b047fee7a88f06f1df2c9baeb81fc55d2d4cf459c3c2c73b8d4ff39f7cdfb696

Contents?: true

Size: 592 Bytes

Versions: 211

Compression:

Stored size: 592 Bytes

Contents

require 'zlib'
require 'stringio'

module ActiveSupport
  # A convenient wrapper for the zlib standard library that allows compression/decompression of strings with gzip.
  module Gzip
    class Stream < StringIO
      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)
      output = Stream.new
      gz = Zlib::GzipWriter.new(output)
      gz.write(source)
      gz.close
      output.string
    end
  end
end

Version data entries

211 entries across 178 versions & 27 rubygems

Version Path
radiantcms-couchrest_model-0.1.1 vendor/rails/activesupport/lib/active_support/gzip.rb
radiantcms-couchrest_model-0.1 vendor/rails/activesupport/lib/active_support/gzip.rb
activesupport-3.0.3 lib/active_support/gzip.rb
activesupport-3.0.2 lib/active_support/gzip.rb
radiant-0.7.2 vendor/rails/activesupport/lib/active_support/gzip.rb
abiquo-etk-0.4.33 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.32 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.29 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.25 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.24 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.23 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.22 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.20 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.19 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.18 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.17 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.16 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.15 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.14 vendor/activesupport-2.3.8/lib/active_support/gzip.rb
abiquo-etk-0.4.13 vendor/activesupport-2.3.8/lib/active_support/gzip.rb