Hi
I'm implementing a wiki style site and want to highlight changes made to articles between successive versions. Using htmldiff to highlight changes works great, except it is rather cpu intensive. I'm using the awesome vestal_versions plugin for versioning.
So how best to handle this? I considered having an on_create callback on version creation create a delayed job that processes and then stores the htmldiff processed article (in the version table row).
If this is a good approach, how can I extend vestal_versions without touching the gem? Or maybe there would be a better approach.
Any advice is much appreciated. :)