Sha256: f35e8051a256a91df3e95aa6200f3fd00406daa1b737d3a5bed8943f7d55094f
Contents?: true
Size: 393 Bytes
Versions: 160
Compression:
Stored size: 393 Bytes
Contents
methods = Zlib::GzipReader.public_instance_methods if !methods.include?(:readpartial) && !methods.include?('readpartial') class Zlib::GzipReader def readpartial(size, out=nil) o = read(size) if o if out out.replace(o) return out else return o end end raise EOFError, "end of file reached" end end end
Version data entries
160 entries across 160 versions & 2 rubygems