Sha256: 7b21953cab5686206d24e08c0d9b5e6edfa71b7fd84fb04cee93316a9c454748
Contents?: true
Size: 607 Bytes
Versions: 11
Compression:
Stored size: 607 Bytes
Contents
#! /usr/env/bin ruby #-- # Copyright 2004 Austin Ziegler <diff-lcs@halostatue.ca> # adapted from: # Algorithm::Diff (Perl) by Ned Konz <perl@bike-nomad.com> # Smalltalk by Mario I. Wolczko <mario@wolczko.com> # implements McIlroy-Hunt diff algorithm # # This program is free software. It may be redistributed and/or modified under # the terms of the GPL version 2 (or later), the Perl Artistic licence, or the # Ruby licence. # # $Id: array.rb,v 1.2 2004/12/15 22:07:19 tamc Exp $ #++ # Includes Diff::LCS into the Array built-in class. require 'diff/lcs' class Array include Diff::LCS end
Version data entries
11 entries across 11 versions & 2 rubygems