class Xlsxrb::Ooxml::WorkbookWriter::ZipEntryIO
Wraps a ZipWriter entry to provide a standard IO-like write interface.
Public Class Methods
(untyped zip) → untyped
Source
# File lib/xlsxrb/ooxml/workbook_writer.rb, line 22 def initialize(zip) @zip = zip end
Public Instance Methods
(untyped data) → untyped
Source
# File lib/xlsxrb/ooxml/workbook_writer.rb, line 26 def write(data) @zip.write_data(data) end
Also aliased as: <<