├── .gitignore ├── ChangeLog ├── README.md ├── Rakefile ├── bin ├── htmldiff └── ldiff ├── lib └── diff │ ├── lcs.rb │ └── lcs │ ├── array.rb │ ├── block.rb │ ├── callbacks.rb │ ├── change.rb │ ├── hunk.rb │ ├── ldiff.rb │ ├── string.rb │ └── version.rb └── test └── test_diff-lcs.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/ChangeLog -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/htmldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/bin/htmldiff -------------------------------------------------------------------------------- /bin/ldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/bin/ldiff -------------------------------------------------------------------------------- /lib/diff/lcs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/lib/diff/lcs.rb -------------------------------------------------------------------------------- /lib/diff/lcs/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/lib/diff/lcs/array.rb -------------------------------------------------------------------------------- /lib/diff/lcs/block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/lib/diff/lcs/block.rb -------------------------------------------------------------------------------- /lib/diff/lcs/callbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/lib/diff/lcs/callbacks.rb -------------------------------------------------------------------------------- /lib/diff/lcs/change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/lib/diff/lcs/change.rb -------------------------------------------------------------------------------- /lib/diff/lcs/hunk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/lib/diff/lcs/hunk.rb -------------------------------------------------------------------------------- /lib/diff/lcs/ldiff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/lib/diff/lcs/ldiff.rb -------------------------------------------------------------------------------- /lib/diff/lcs/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/lib/diff/lcs/string.rb -------------------------------------------------------------------------------- /lib/diff/lcs/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/lib/diff/lcs/version.rb -------------------------------------------------------------------------------- /test/test_diff-lcs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioele/diff-lcs/HEAD/test/test_diff-lcs.rb --------------------------------------------------------------------------------