NAME Diff::LibXDiff - Calculate a diff with LibXDiff (via XS) VERSION Version 0.03 SYNOPSIS use Diff::LibXDiff; my $string1 = <<_END_ apple banana cherry _END_ my $string2 = <<_END_ apple grape cherry lime _END_ my $diff = Diff::LibXDiff->diff( $string1, $string2 ) # $diff is ... @@ -1,3 +1,4 @@ apple -banana +grape cherry +lime DESCRIPTION Diff::LibXDiff is a binding of LibXDiff (<http://www.xmailserver.org/xdiff-lib.html>) to Perl via XS LibXDiff is the basis of the diff engine for git Currently only the "diff" method is supported, and that only with text diffing. More coming soon. METHODS $diff = Diff::LibXDiff->diff( $string1, $string2 ) Calculate the textual diff of $string1 and $string2 and return the result as a string AUTHOR Robert Krimen, "<rkrimen at cpan.org>" SEE ALSO <http://www.xmailserver.org/xdiff-lib.html> Algorithm::Diff BUGS Please report any bugs or feature requests to "bug-diff-libxdiff at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Diff-LibXDiff>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT You can find documentation for this module with the perldoc command. perldoc Diff::LibXDiff You can also look for information at: * RT: CPAN's request tracker <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Diff-LibXDiff> * AnnoCPAN: Annotated CPAN documentation <http://annocpan.org/dist/Diff-LibXDiff> * CPAN Ratings <http://cpanratings.perl.org/d/Diff-LibXDiff> * Search CPAN <http://search.cpan.org/dist/Diff-LibXDiff/> ACKNOWLEDGEMENTS COPYRIGHT & LICENSE Copyright 2009 Robert Krimen, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.