Sha256: 89175d8e54ce1f859ec147066e2e870fb9f27b0f1948f6ea3a2e14389cc2c62a
Contents?: true
Size: 738 Bytes
Versions: 15
Compression:
Stored size: 738 Bytes
Contents
# encoding: utf-8 # = epubmaker.rb -- EPUB production set. # # Copyright (c) 2010-2013 Kenshi Muto # # This program is free software. # You can distribute or modify this program under the terms of # the GNU LGPL, Lesser General Public License version 2.1. # For details of the GNU LGPL, see the file "COPYING". # # == Quick usage # require 'epubmaker' # epub = EPUBMaker::Producer.new # params = epub.load("config.yml") # epub.contents.push(EPUBMaker::Content.new({"file" => "ch01.xhtml"})) # epub.contents.push(EPUBMaker::Content.new({"file" => "ch02.xhtml"})) # ... # epub.import_imageinfo("images") # epub.produce require 'epubmaker/producer' require 'epubmaker/content' require 'epubmaker/epubv2' require 'epubmaker/epubv3'
Version data entries
15 entries across 15 versions & 2 rubygems