class UCF::MetaInf

This is a subclass of ManagedDirectory to represent the META-INF directory in a basic UCF Document.

Public Class Methods

new → MetaInf click to toggle source

Create a standard META-INF ManagedDirectory.

Calls superclass method UCF::ManagedDirectory.new
# File lib/ucf/meta-inf.rb, line 44
def initialize
  super("META-INF", false,
    [ManagedFile.new("container.xml"), ManagedFile.new("manifest.xml"),
      ManagedFile.new("metadata.xml"), ManagedFile.new("signatures.xml"),
      ManagedFile.new("encryption.xml"), ManagedFile.new("rights.xml")])
end