class Warbler::ZipSupportRubyZip1_0
Public Class Methods
create(filename, &blk)
click to toggle source
# File lib/warbler/zip_support.rb, line 13 def self.create(filename, &blk) Zip::File.open(filename, Zip::File::CREATE, &blk) end
open(filename, &blk)
click to toggle source
# File lib/warbler/zip_support.rb, line 17 def self.open(filename, &blk) Zip::File.open(filename, &blk) end