This marks the EntryStream closed for reading without closing the actual data stream.
# File lib/archive/tar/minitar/reader.rb, line 15 def closed?; true; end
# File lib/archive/tar/minitar/reader.rb, line 13 def getc; raise ClosedStream; end
rubocop:disable Style/SingleLineMethods rubocop:disable Style/EmptyLineBetweenDefs
# File lib/archive/tar/minitar/reader.rb, line 12 def read(*); raise ClosedStream; end
# File lib/archive/tar/minitar/reader.rb, line 14 def rewind; raise ClosedStream; end