From: Oleg Igor Date: 2009-08-22T23:36:36+09:00 Subject: # require "zlib" def inflate(string) zstream = Zlib::Inflate.new buf = zstream.inflate(string) zstream.finish zstream.close buf end Work fine with ruby 1.8, and do not work in ruby 1.9 # what is wrong ? Oleg. -- Posted via http://www.ruby-forum.com/.