Sha256: e20c81edba5fc4c742d31a7d344b699a60ce6b0582f11aa6fa230a93f1cb35f0

Contents?: true

Size: 767 Bytes

Versions: 2

Compression:

Stored size: 767 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/resource'
require 'epubmaker/content'
require 'epubmaker/epubv2'
require 'epubmaker/epubv3'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
review-1.4.0 lib/epubmaker.rb
review-1.3.0 lib/epubmaker.rb