Module: Minitar::Reader::InvalidEntryStream
- Defined in:
- lib/minitar/reader.rb
Overview
This marks the EntryStream closed for reading without closing the actual data stream.
Instance Method Summary collapse
-
#closed? ⇒ Boolean
:nodoc:.
-
#getc ⇒ Object
:nodoc:.
-
#read ⇒ Object
:nodoc:.
-
#rewind ⇒ Object
:nodoc:.
Instance Method Details
#closed? ⇒ Boolean
:nodoc:
19 |
# File 'lib/minitar/reader.rb', line 19 def closed? = true # :nodoc: |
#getc ⇒ Object
:nodoc:
15 |
# File 'lib/minitar/reader.rb', line 15 def getc = raise ClosedStream # :nodoc: |
#read ⇒ Object
:nodoc:
13 |
# File 'lib/minitar/reader.rb', line 13 def read(*) = raise ClosedStream # :nodoc: |
#rewind ⇒ Object
:nodoc:
17 |
# File 'lib/minitar/reader.rb', line 17 def rewind = raise ClosedStream # :nodoc: |