vote up 4 vote down star
4

Is there a ruby library that will take two strings or two arrays and return the difference between the two strings/arrays?

flag

80% accept rate

7 Answers

vote up 8 vote down check

diff.rb is what you want, which is available at http://users.cybercity.dk/~dsl8950/ruby/diff.html

link|flag
Note: diff.rb is GPL – Sam Saffron Jul 31 at 4:36
vote up 5 vote down

For arrays, use the minus operator. For example:

>> foo = [1, 2, 3]
=> [1, 2, 3]
>> goo = [2, 3, 4]
=> [2, 3, 4]
>> foo - goo
=> [1]

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.

link|flag
vote up 2 vote down

There is also diff-lcs which is available as a gem. It hasn't been updated since 2004 but we have been using it without any problem.

http://rubyforge.org/frs/?group_id=84

link|flag
vote up 2 vote down

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.

link|flag
vote up 2 vote down

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

gem sources -a http://gems.github.com
sudo gem install pvande-differ

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:

git clone git://github.com/myobie/htmldiff.git
cd htmldiff
gem build htmldiff.gemspec
sudo gem install htmldiff-x.y.z.gem

Replace "htmldiff-x.y.z.gem" with the proper .gem filename that was created.

link|flag
vote up 1 vote down

The HTMLDiff that @da01 mentions above worked for me.

script/plugin install git://github.com/myobie/htmldiff.git

# bottom of environment.rb
require 'htmldiff'

# in model
class Page < ActiveRecord::Base
  extend HTMLDiff
end

# in view
<h1>Revisions for <%= @page.name %></h1>
<ul>
<% @page.revisions.each do |revision| %>
  <li>
    <b>Revised <%= distance_of_time_in_words_to_now revision.created_at %> ago</b><BR>
      <%= Page.diff(
        revision.changes['description'][0],
        revision.changes['description'][1]
      ) %>
      <BR><BR>
  </li>
<% end %>

# in style.css
ins.diffmod, ins.diffins { background: #d4fdd5; text-decoration: none; }
del.diffmod, del.diffdel { color: #ff9999; }

Looks pretty good. By the way I used this with the acts_as_audited plugin.

link|flag
vote up 0 vote down

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:

 def diff str1, str2
   system "diff #{file_for str1} #{file_for str2}"
 end

 private
 def file_for text
   exp = Tempfile.new("bk", "/tmp").open
   exp.write(text)
   exp.close
   exp.path
 end
link|flag
using temporary files is generally a bad idea when you have an in memory option available. – epochwolf Oct 15 at 19:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.