- Authors
-
Robert Haines
- Contact
- Homepage
- Source code
- Licence
-
BSD (See Licence file or www.opensource.org/licenses/bsd-license.php)
- Copyright
-
© 2013-2015 The University of Manchester, UK
<img src=“https://badge.fury.io/rb/ucf.svg” alt=“Gem Version” /> <img src=“https://codeclimate.com/github/myGrid/ruby-ucf.svg” /> <img src=“https://travis-ci.org/myGrid/ruby-ucf.svg?branch=master” alt=“Build Status” /> <img src=“https://coveralls.io/repos/myGrid/ruby-ucf/badge.svg?branch=master” alt=“Coverage Status” />
This is a Ruby library for working with UCF documents. See the specification for more details. UCF is a type of EPUB and very similar to the EPUB Open Container Format (OCF).
Most of this library’s API is provided by the underlying zip-container gem so you will need to consult that documentation as well in addition to this.
There are some examples of how to use the library provided in the examples directory. See the contents of the tests directory for even more.
We follow the principles of Semantic Versioning for our releases.
The UCF specification requires that files in the META-INF directory are validated against a schema if they are present. If the nokogiri gem is available then this library will use it to validate the contents of the container.xml
and manifest.xml
files. This functionality is not enforced on the user in case they are not using the META-INF directory and so would not need the extra dependency on nokogiri.
The UCF::Container class is deprecated in favour of UCF::File. These classes are functionally identical; it is just a change of name. The new name brings this API into closer alignment with the underlying zip-container API (ZipContainer::File).
UCF::Container is not available from version 1.0.0 onwards.
This library has two entry points.
The main UCF::File class is a specialization of ZipContainer::File which largely mimics the rubyzip Zip::File and Zip::FileSystem APIs.
The UCF::Dir class is a based upon the ZipContainer::Dir class which mimics, where possible, the core ruby Dir API.
There are some examples of how to use the library provided in the examples directory. See the contents of the tests directory for even more.
The basic requirements of a UCF document are all implemented but there are a number of optional features that are not yet provided.
-
Memory resident UCF documents. Presently all operations are performed on documents that are resident on disk as the underlying rubyzip library currently cannot do anything else.
-
Validation of all file contents in the META-INF directory. The
container.xml
andmanifest.xml
files are validated but others are not yet. -
Digital signatures (this feature has been deferred until a future revision of the UCF specification. It will be supported by this gem when it is added to the specification).
-
Encryption (this feature has been deferred until a future revision of the UCF specification. It will be supported by this gem when it is added to the specification).