Sha256: 5398b0f482d9cfec7db1d3b8deeacc4477c6ca2ec3b324d0cf7069e568ea9ef2
Contents?: true
Size: 549 Bytes
Versions: 75
Compression:
Stored size: 549 Bytes
Contents
module Zip class Error < StandardError; end class EntryExistsError < Error; end class DestinationFileExistsError < Error; end class CompressionMethodError < Error; end class EntryNameError < Error; end class InternalError < Error; end # Backwards compatibility with v1 (delete in v2) ZipError = Error ZipEntryExistsError = EntryExistsError ZipDestinationFileExistsError = DestinationFileExistsError ZipCompressionMethodError = CompressionMethodError ZipEntryNameError = EntryNameError ZipInternalError = InternalError end
Version data entries
75 entries across 72 versions & 20 rubygems