Sha256: 7c0ac2f3c0512fb1c58861dfe6d2c8bc4f38ee3a94c7df87b66b32d065c07196
Contents?: true
Size: 230 Bytes
Versions: 3
Compression:
Stored size: 230 Bytes
Contents
require 'zip/zip' module Zip class ZipCentralDirectory def write_to_stream(io) #:nodoc: offset = io.tell @entrySet.each { |entry| entry.write_c_dir_entry(io) } write_e_o_c_d(io, offset) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
gepub-0.6.6 | lib/gepub/rubyzip_patch.rb |
gepub-0.6.5.2 | lib/gepub/rubyzip_patch.rb |
gepub-0.6.5.1 | lib/gepub/rubyzip_patch.rb |