Sha256: 80014c0f4dc32cc46414c92f4fdd77c8cea95c8d2ef03ea45719212a491d0a7b
Contents?: true
Size: 448 Bytes
Versions: 17
Compression:
Stored size: 448 Bytes
Contents
module Zip class NullDecompressor #:nodoc:all include Singleton def sysread(numberOfBytes = nil, buf = nil) nil end def produce_input nil end def input_finished? true end def eof true end alias :eof? :eof end end # Copyright (C) 2002, 2003 Thomas Sondergaard # rubyzip is free software; you can redistribute it and/or # modify it under the terms of the ruby license.
Version data entries
17 entries across 17 versions & 4 rubygems