Sha256: 5246520bcab1f52abcc54798b96cadbd06d5ee7ec0b21fffc9e13beda65b112e

Contents?: true

Size: 858 Bytes

Versions: 2

Compression:

Stored size: 858 Bytes

Contents

# encoding: utf-8
# = epubmaker.rb -- EPUB production set.
#
# Copyright (c) 2010-2012 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
# (If you put xhtml files on current directory and put figures in
# images subdirectory)
#
#  require 'epubmaker'
#  epub = EPUBMaker::Producer.new
#  params = epub.load("config.yaml")
#  epub.contents.push(EPUBMaker::Content.new({"file" => "ch01.xhtml"}))
#  epub.contents.push(EPUBMaker::Content.new({"file" => "ch02.xhtml"}))
#   ...
#  epub.importImageInfo("images")
#  epub.produce

require 'epubmaker/producer'
require 'epubmaker/resource'
require 'epubmaker/content'
require 'epubmaker/epubv2'
require 'epubmaker/epubv3'

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
review-1.1.0 lib/epubmaker.rb
tmtms-review-1.0.0 lib/epubmaker.rb