Module: Rant::Archive::Rubyzip
- Defined in:
- lib/rant/archive/rubyzip.rb
Defined Under Namespace
Classes: Compressor, Decompressor, Deflater, Inflater, NullCompressor, NullDecompressor, NullInputStream, PassThruCompressor, PassThruDecompressor, ZipCentralDirectory, ZipCompressionMethodError, ZipDestinationFileExistsError, ZipEntry, ZipEntryExistsError, ZipEntryNameError, ZipEntrySet, ZipError, ZipExtraField, ZipFile, ZipInputStream, ZipOutputStream, ZipStreamableDirectory, ZipStreamableFile, ZipStreamableStream
Constant Summary collapse
- VERSION =
'0.5.8'
- RUBY_MINOR_VERSION =
RUBY_VERSION.split(".")[1].to_i
- EMPTY_FILE_RETURNS_EMPTY_STRING_FIRST =
Ruby 1.7.x compatibility In ruby 1.6.x and 1.8.0 reading from an empty stream returns an empty string the first time and then nil.
not so in 1.7.x
RUBY_MINOR_VERSION != 7