Sha256: 1a6a103a7b5013cea227f8ea2b5395f54ab0572ef2bbf04293c9b4aa5e139169
Contents?: true
Size: 619 Bytes
Versions: 10
Compression:
Stored size: 619 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 EntrySizeError < Error; end class InternalError < Error; end class GPFBit3Error < 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
10 entries across 10 versions & 4 rubygems