Class: Zip::PassThruCompressor
- Inherits:
-
Compressor
- Object
- Compressor
- Zip::PassThruCompressor
- Defined in:
- lib/ruby_archive/handlers/rubyzip/zip/zip.rb
Overview
:nodoc:all
Instance Attribute Summary collapse
-
#crc ⇒ Object
readonly
Returns the value of attribute crc.
-
#size ⇒ Object
readonly
Returns the value of attribute size.
Instance Method Summary collapse
- #<<(data) ⇒ Object
-
#initialize(outputStream) ⇒ PassThruCompressor
constructor
A new instance of PassThruCompressor.
Methods inherited from Compressor
Constructor Details
#initialize(outputStream) ⇒ PassThruCompressor
Returns a new instance of PassThruCompressor.
1073 1074 1075 1076 1077 1078 |
# File 'lib/ruby_archive/handlers/rubyzip/zip/zip.rb', line 1073 def initialize(outputStream) super() @outputStream = outputStream @crc = Zlib::crc32 @size = 0 end |
Instance Attribute Details
#crc ⇒ Object (readonly)
Returns the value of attribute crc.
1087 1088 1089 |
# File 'lib/ruby_archive/handlers/rubyzip/zip/zip.rb', line 1087 def crc @crc end |
#size ⇒ Object (readonly)
Returns the value of attribute size.
1087 1088 1089 |
# File 'lib/ruby_archive/handlers/rubyzip/zip/zip.rb', line 1087 def size @size end |