Is there a ruby library that will take two strings or two arrays and return the difference between the two strings/arrays?
|
|
diff.rb is what you want, which is available at http://users.cybercity.dk/~dsl8950/ruby/diff.html |
||
|
|
|
For arrays, use the minus operator. For example:
Here the last line removes everything from foo that is also in goo, leaving just the element 1. I don't know how to do this for two strings, but until somebody who knows posts about it, you could just convert each string to an array, use the minus operator, and then convert the result back. |
||
|
|
|
|
There is also |
||
|
|
|
|
I just found a new project that seems pretty flexible: http://github.com/pvande/differ/tree/master Trying it out and will try to post some sort of report. |
||
|
|
|
|
UPDATE: For strings, I would first try out the Ruby Gem that @sam-saffron mentioned below. It's easier to install: http://github.com/pvande/differ/tree/master
Original Answer: Here is another one that is slightly harder to install, but still very good easy to use: HTMLDiff From: http://github.com/myobie/htmldiff/tree/master You can use it as a regular Ruby "require" library file or manually install it as a gem:
Replace "htmldiff-x.y.z.gem" with the proper .gem filename that was created. |
|||
|
|
|
|
The HTMLDiff that @da01 mentions above worked for me.
Looks pretty good. By the way I used this with the |
|||
|
|
|
|
I had the same doubt and the solution I found is not 100% ruby, but is the best for me. The problem with diff.rb is that it doesn't have a pretty formatter, to show the diffs in a humanized way. So I used diff from the OS with this code:
|
||
|
