Sha256: b5584d0978f0acb66bc1a44b1aa55d9c90bd9dfe7aa668bc51e5ee5af4e37c89
Contents?: true
Size: 1010 Bytes
Versions: 1
Compression:
Stored size: 1010 Bytes
Contents
EPUB Parser =========== 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', 'working/directory' book.each_page_on_spine do |page| # do somethong... end See the [wiki][] for more info. [wiki]:https://gitorious.org/epub/pages/EpubParser REQUIREMENTS ------------ * UNIX like `unzip` command * libxml2 and libxslt for Nokogiri gem TODOS ----- * Adding tests * Implementing metadata/link, navigation document and so on * Using zip library instead of `unzip` command, which has security issue * Using SAX on parsing * Extracting and organizing common behavior from some classes to modules * Abstraction of XML parser(making it possible to use REXML, standard bundled XML library of Ruby) LICENSE ------- This library is distribuetd under the term of the MIT License. See MIT-LICENSE file for more info.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
epub-parser-0.0.8 | README.markdown |