diff-lcs 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +42 -0
- data/Install +6 -0
- data/README +77 -0
- data/Rakefile +103 -0
- data/bin/htmldiff +111 -0
- data/bin/ldiff +45 -0
- data/lib/diff/lcs.rb +1105 -0
- data/lib/diff/lcs/array.rb +21 -0
- data/lib/diff/lcs/block.rb +51 -0
- data/lib/diff/lcs/callbacks.rb +322 -0
- data/lib/diff/lcs/change.rb +169 -0
- data/lib/diff/lcs/hunk.rb +257 -0
- data/lib/diff/lcs/ldiff.rb +226 -0
- data/lib/diff/lcs/string.rb +19 -0
- data/tests/00test.rb +626 -0
- metadata +66 -0
metadata
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.1
|
3
|
+
specification_version: 1
|
4
|
+
name: diff-lcs
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 1.1.1
|
7
|
+
date: 2004-09-25
|
8
|
+
summary: Provides a list of changes that represent the difference between two sequenced collections.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
author: Austin Ziegler
|
12
|
+
email: diff-lcs@halostatue.ca
|
13
|
+
homepage: http://rubyforge.org/projects/ruwiki/
|
14
|
+
rubyforge_project: ruwiki
|
15
|
+
description: "Diff::LCS is a port of Algorithm::Diff that uses the McIlroy-Hunt longest common subsequence (LCS) algorithm to compute intelligent differences between two sequenced enumerable containers. The implementation is based on Mario I. Wolczko's Smalltalk version (1.2, 1993) and Ned Konz's Perl version (Algorithm::Diff)."
|
16
|
+
autorequire: diff/lcs
|
17
|
+
default_executable:
|
18
|
+
bindir: bin
|
19
|
+
has_rdoc: true
|
20
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
21
|
+
requirements:
|
22
|
+
-
|
23
|
+
- ">="
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 1.8.1
|
26
|
+
version:
|
27
|
+
platform: ruby
|
28
|
+
files:
|
29
|
+
- bin
|
30
|
+
- ChangeLog
|
31
|
+
- Install
|
32
|
+
- lib
|
33
|
+
- Rakefile
|
34
|
+
- README
|
35
|
+
- tests
|
36
|
+
- bin/htmldiff
|
37
|
+
- bin/ldiff
|
38
|
+
- lib/diff
|
39
|
+
- lib/diff/lcs
|
40
|
+
- lib/diff/lcs.rb
|
41
|
+
- lib/diff/lcs/array.rb
|
42
|
+
- lib/diff/lcs/block.rb
|
43
|
+
- lib/diff/lcs/callbacks.rb
|
44
|
+
- lib/diff/lcs/change.rb
|
45
|
+
- lib/diff/lcs/hunk.rb
|
46
|
+
- lib/diff/lcs/ldiff.rb
|
47
|
+
- lib/diff/lcs/string.rb
|
48
|
+
- tests/00test.rb
|
49
|
+
test_files:
|
50
|
+
- tests/00test.rb
|
51
|
+
rdoc_options:
|
52
|
+
- "--title"
|
53
|
+
- "Diff::LCS -- A Diff Algorithm"
|
54
|
+
- "--main"
|
55
|
+
- README
|
56
|
+
- "--line-numbers"
|
57
|
+
extra_rdoc_files:
|
58
|
+
- README
|
59
|
+
- ChangeLog
|
60
|
+
- Install
|
61
|
+
executables:
|
62
|
+
- ldiff
|
63
|
+
- htmldiff
|
64
|
+
extensions: []
|
65
|
+
requirements: []
|
66
|
+
dependencies: []
|