Sha256: d7e1da7d470da103e59e25f1de1ae25b3243a73c42698f87ec04d9f5daf9abd0
Contents?: true
Size: 561 Bytes
Versions: 96
Compression:
Stored size: 561 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$ #++ # Includes Diff::LCS into the Array built-in class. require 'diff/lcs' class Array include Diff::LCS end
Version data entries
96 entries across 89 versions & 16 rubygems