The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Data::Difflet - Ultra special pretty cute diff generator Mark II

SYNOPSIS

use Data::Difflet;

my $difflet = Data::Difflet->new();
print $difflet->compare(
    {
        a => 2,
        c => 5,
    },
    {
        a => 3,
        b => 4,
    }
);

DESCRIPTION

THIS MODULE IS IN ITS BETA QUALITY. THE API MAY CHANGE IN THE FUTURE

Data::Difflet is colorful diff generator for Perl5!

See the following image!

METHODS

AUTHOR

Tokuhiro Matsuno

SEE ALSO

This module is inspired from node.js library named difflet. git://github.com/substack/difflet.git

LICENSE

Copyright (C) Tokuhiro Matsuno

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.