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
3mix-castronaut-0.5.0.2 vendor/activesupport/lib/active_support/gzip.rb
masover-castronaut-0.4.4.4 vendor/activesupport/lib/active_support/gzip.rb
masover-castronaut-0.4.4.5 vendor/activesupport/lib/active_support/gzip.rb
masover-castronaut-0.5.0.1 vendor/activesupport/lib/active_support/gzip.rb
p8-castronaut-0.6.1.1 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.4.1 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.4.2 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.4.3 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.4.4 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.4.5 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.4.6 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.5.0 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.5.1 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.5.2 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.5.3 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.5.4 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.6.0 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.6.1 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.7.4 vendor/activesupport/lib/active_support/gzip.rb
relevance-castronaut-0.7.5 vendor/activesupport/lib/active_support/gzip.rb