Sha256: 07e330e05b1fa687e436a81747f1f8222c182953bc65314b1e25e40e6d070fa8
Contents?: true
Size: 383 Bytes
Versions: 12
Compression:
Stored size: 383 Bytes
Contents
require 'epub/ocf/physical_container/zipruby' module EPUB class OCF class PhysicalContainer class Zipruby < self def write(path_name, content) if @archive @archive.add_or_replace_buffer path_name, content else open {|container| container.save(path_name, content)} end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems