-
Sub-task
-
Resolution: Done
-
Major
-
None
-
None
-
None
As discussed on IRC:
So this is the version that work with jsonPatch, there is some unit test here:
https://github.com/corinnekrych/aerogear-ios-sync/blob/json.synchronizer/AeroGearSyncTests/JsonPatchSynchronizerTests.swift
the problem i’d like you to work on is podfile
https://github.com/corinnekrych/aerogear-ios-sync/blob/json.synchronizer/Podfile#L8
to have a project that compile i had to remove diffmatchpatch because JSTools + DiffMatchPatch use together => does not work
i think this is due to:
https://github.com/grgcombs/JSONTools/blob/master/Podfile#L13
this is a first pb
we culd maybe sorted out either making both work together or using pod sub spec
subspec will fit nice here as we want to use either one or the other
2nd issue i had is with cocoapods 0.36 and copying resources
https://github.com/grgcombs/JSONTools/blob/master/Podfile#L7
the resources copy target in xcworkspace fails…
i just remove the copy target as i think it’s more used for unit testing JSTools
but i had to manually remove the resources in the workspace
so it will be nice to fix that too