summaryrefslogtreecommitdiff
path: root/diff-lcs/tags/release-1.0/lib/diff/lcs/string.rb
diff options
context:
space:
mode:
Diffstat (limited to 'diff-lcs/tags/release-1.0/lib/diff/lcs/string.rb')
-rw-r--r--diff-lcs/tags/release-1.0/lib/diff/lcs/string.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/diff-lcs/tags/release-1.0/lib/diff/lcs/string.rb b/diff-lcs/tags/release-1.0/lib/diff/lcs/string.rb
deleted file mode 100644
index 96a01fe..0000000
--- a/diff-lcs/tags/release-1.0/lib/diff/lcs/string.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-#! /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$
-#++
-
-require 'diff/array'
-
-class String
- include Diff::LCS
-end