Class: Zip::NullDecompressor
- Includes:
- Singleton
- Defined in:
- lib/pik/contrib/zip/zip.rb
Overview
:nodoc:all
Direct Known Subclasses
Instance Method Summary collapse
- #eof ⇒ Object (also: #eof?)
- #input_finished? ⇒ Boolean
- #produce_input ⇒ Object
- #sysread(numberOfBytes = nil, buf = nil) ⇒ Object
Instance Method Details
#eof ⇒ Object Also known as: eof?
282 283 284 |
# File 'lib/pik/contrib/zip/zip.rb', line 282 def eof true end |
#input_finished? ⇒ Boolean
278 279 280 |
# File 'lib/pik/contrib/zip/zip.rb', line 278 def input_finished? true end |
#produce_input ⇒ Object
274 275 276 |
# File 'lib/pik/contrib/zip/zip.rb', line 274 def produce_input nil end |
#sysread(numberOfBytes = nil, buf = nil) ⇒ Object
270 271 272 |
# File 'lib/pik/contrib/zip/zip.rb', line 270 def sysread(numberOfBytes = nil, buf = nil) nil end |