Method: Synqa::SyncOperation#markSyncOperations
- Defined in:
- lib/synqa.rb
#markSyncOperations ⇒ Object
On the local and remote content trees, mark the copy and delete operations required to sync the remote location to the local location.
948 949 950 951 952 953 954 955 956 957 958 |
# File 'lib/synqa.rb', line 948 def markSyncOperations @sourceContent.markSyncOperationsForDestination(@destinationContent) puts " ================================================ " puts "After marking for sync --" puts "" puts "Local:" @sourceContent.showIndented() puts "" puts "Remote:" @destinationContent.showIndented() end |