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. |
|||||||
|
|
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. |
||||
|
|
|
I got frustrated with the lack of a good library for this in ruby, so I wrote http://github.com/samg/diffy. It uses |
|||||
|
|
The HTMLDiff that @da01 mentions above worked for me.
Looks pretty good. By the way I used this with the |
||||
|
|
|
There is also Edit: A new version was released in 2011. Looks like it's back in active development. |
||||
|
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. |
|||
|
|
|
Just for the benefit of Windows people: diffy looks brilliant but I belive it will only work on *nix (correct me if I'm wrong). Certainly it didn't work on my machine. Differ worked a treat for me (Windows 7 x64, Ruby 1.8.7). |
|||
|
|
Maybe Array.diff via monkey-patch helps... http://grosser.it/2011/07/07/ruby-array-diffother-difference-between-2-arrays/ |
|||
|
|
|
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:
|
|||||
|