On Sun, Sep 26, 2004 at 11:24:50AM +0900, Austin Ziegler wrote: > I am pleased to announce the release of Diff::LCS 1.1.1, a bugfix > release over Diff::LCS 1.1.0. This is one of two utility packages > required for installation and use of Ruwiki as a RubyGem. Just packaged it for RPA (http://rpa-base.rubyforge.org) as 0.5.1-1 so it can be installed/upgraded with rpa update rpa install archive-tar-minitar There's a small issue with the tarball you provide (see my reply to the Archive::Tar::Minitar announcement for a patch). I also found some problems in bin/htmldiff, which I've fixed in the RPA port/package: $ ldiff -u htmldiff.orig htmldiff --- htmldiff.orig 2004-09-26 18:39:01 +0200 +++ htmldiff 2004-09-26 18:39:52 +0200 @@ -18,6 +18,7 @@ require_gem 'diff-lcs', "1.1.1" require 'diff/lcs/string' rescue LoadError + require 'diff/lcs' require 'diff/lcs/string' end @@ -32,17 +33,17 @@ # This will be called with both lines are the same def match(event) - @output << %Q|<pre class="match">#{event.old_el}</pre>\n| + @output << %Q|<pre class="match">#{event.old_element}</pre>\n| end # This will be called when there is a line in A that isn't in B def discard_a(event) - @output << %Q|<pre class="only_a">#{event.old_el}</pre>\n| + @output << %Q|<pre class="only_a">#{event.old_element}</pre>\n| end # This will be called when there is a line in B that isn't in A def discard_b(event) - @output << %Q|<pre class="only_b">#{event.new_el}</pre>\n| + @output << %Q|<pre class="only_b">#{event.new_element}</pre>\n| end end -- Running Debian GNU/Linux Sid (unstable) batsman dot geo at yahoo dot com