class ROBundle::RODir

The managed .ro directory entry of a Research Object.

For internal use only.

Public Class Methods

new(manifest) click to toggle source

Create a new .ro managed directory entry with the specified manifest file object.

Calls superclass method
# File lib/ro-bundle/ro/directory.rb, line 24
def initialize(manifest)
  @manifest = manifest
  @annotations_directory = AnnotationsDir.new

  super(DIR_NAME, :required => true,
    :entries => [@manifest, @annotations_directory])
end