mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
ca9413674e
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9093 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
25 lines
No EOL
592 B
Ruby
25 lines
No EOL
592 B
Ruby
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 |