# File lib/rubyrep/syncers/syncers.rb, line 93 def sync_difference(type, row) case type when source if sync_helper.sync_options[:insert] sync_helper.insert_record target, sync_helper.tables[target], row end when target if sync_helper.sync_options[:delete] sync_helper.delete_record target, sync_helper.tables[target], row end when :conflict if sync_helper.sync_options[:update] sync_helper.update_record target, sync_helper.tables[target], row[source_record_index] end end end