Sha256: a1d44ce2806862b15535cbe1393f236da7f2deceb18b613a143daa9c81bc9cb3
Contents?: true
Size: 470 Bytes
Versions: 17
Compression:
Stored size: 470 Bytes
Contents
module Zip class ZipStreamableDirectory < ZipEntry def initialize(zipfile, entry, srcPath = nil, permissionInt = nil) super(zipfile, entry) @ftype = :directory entry.get_extra_attributes_from_path(srcPath) if (srcPath) @unix_perms = permissionInt if (permissionInt) end end end # Copyright (C) 2002, 2003 Thomas Sondergaard # rubyzip is free software; you can redistribute it and/or # modify it under the terms of the ruby license.
Version data entries
17 entries across 17 versions & 4 rubygems