class Utils::ConfigFile

def sync_dir(&block)

Returns:
  • (SyncDir) - the SyncDir instance associated with this object
def sync_dir(&block)
  if block
    @sync_dir = SyncDir.new(&block)
  end
  @sync_dir ||= SyncDir.new
end