The "zlib" decompression algorithm.
Methods
Public Class methods
Creates a new ZLibDecompressor.
[ show source ]
# File lib/net/ssh/transport/compress/zlib-decompressor.rb, line 30 30: def initialize 31: init_inflater 32: end
Public Instance methods
Decompresses the text using the "inflate" Zlib algorithm.
[ show source ]
# File lib/net/ssh/transport/compress/zlib-decompressor.rb, line 35 35: def decompress( text ) 36: @inflater.inflate( text ) 37: end