• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..11-Apr-2013244

Build.PLH A D20-Feb-2013870

ChangesH A D20-Feb-20131.6 KiB

eg/H11-Apr-20133

lib/H05-Apr-20133

Makefile.PLH A D20-Feb-2013567

MANIFESTH A D20-Feb-2013307

META.jsonH A D20-Feb-20131.9 KiB

META.ymlH A D20-Feb-20131.2 KiB

README.mdH A D20-Feb-20131.2 KiB

t/H11-Apr-20138

README.md

1Text/WordDiff version 0.08
2==========================
3
4This library's module, Text::WordDiff, is a variation on the lovely
5[Text::Diff](http://search.cpan.org/perldoc?Text::Diff) module. Rather than
6generating traditional line-oriented diffs, however, it generates
7word-oriented diffs. This can be useful for tracking changes in narrative
8documents or documents with very long lines. To diff source code, one is still
9best off using Text::Diff. But if you want to see how a short story changed
10from one version to the next, this module will do the job very nicely.
11
12INSTALLATION
13
14To install this module, type the following:
15
16    perl Build.PL
17    ./Build
18    ./Build test
19    ./Build install
20
21Or, if you don't have Module::Build installed, type the following:
22
23    perl Makefile.PL
24    make
25    make test
26    make install
27
28Dependencies
29------------
30
31Text::WordDiff requires the following modules:
32
33* Algorithm::Diff '1.19',
34* Term::ANSIColor '0',
35* HTML::Entities '0',
36
37Copyright and Licence
38---------------------
39
40Copyright (c) 2005-2011 David E. Wheeler. Some Rights Reserved.
41
42This module is free software; you can redistribute it and/or modify it under
43the same terms as Perl itself.
44
45