EPUB Parser

Build Status

INSTALLATION

gem install epub-parser  

USAGE

As a command line tool

epubinfo path/to/book.epub

For more info:

epubinfo -h

As a library

require 'epub/parser'

book = EPUB::Parser.parse 'book.epub'
book.each_page_on_spine do |page|
  # do somethong...
end

See the wiki or API Documentation for more info.

REQUIREMENTS

CHANGELOG

0.1.2

0.1.1

TODOS

DONE

LICENSE

This library is distribuetd under the term of the MIT License. See MIT-LICENSE file for more info.