class LSync::DirectoryController

The directory controller provides event handlers with a unified interface for dealing with a particular backup in a particular directory.

Attributes

directory[R]

The directory that the data is being copied within.

Public Class Methods

new(script, logger, master, target, current, directory) click to toggle source
Calls superclass method LSync::CopyController::new
# File lib/lsync/controller.rb, line 200
def initialize(script, logger, master, target, current, directory)
        super(script, logger, master, target, current)

        @directory = directory
end