X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=vendor%2Frails%2Factivesupport%2Flib%2Factive_support%2Fgzip.rb;fp=vendor%2Frails%2Factivesupport%2Flib%2Factive_support%2Fgzip.rb;h=0000000000000000000000000000000000000000;hb=36d9f3351a3b4e8159279445190e2287ffdea86c;hp=35a50e9a777f50c70e4278e0fe8c29b6176bd53e;hpb=913cf6054b1d29b5d2f5e620304af7ee77cc1f1f;p=feedcatcher.git

diff --git a/vendor/rails/activesupport/lib/active_support/gzip.rb b/vendor/rails/activesupport/lib/active_support/gzip.rb
deleted file mode 100644
index 35a50e9..0000000
--- a/vendor/rails/activesupport/lib/active_support/gzip.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-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
\ No newline at end of file