class ODisk::DirSyncJob
Attributes
current_digest[RW]
only set by the Digester
new_digest[RW]
new digest to be set locally and remotely
path[R]
relative path from top
previous_digest[RW]
only set by the SyncStarter
remote_digest[RW]
only set by the Fetcher
Public Class Methods
new(path)
click to toggle source
# File lib/odisk/dirsyncjob.rb, line 16 def initialize(path) @path = path @current_digest = nil @previous_digest = nil @remote_digest = nil @new_digest = nil end