Method: EPUBMaker::Producer#colophon
- Defined in:
- lib/epubmaker/producer.rb
#colophon(wobj) ⇒ Object
Write colophon file to IO object wobj
.
150 151 152 153 154 155 |
# File 'lib/epubmaker/producer.rb', line 150 def colophon(wobj) s = @epub.colophon if !s.nil? && !wobj.nil? wobj.puts s end end |