The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

CPAN::Diff::Module - Object representing module metadata

SYNOPSIS

    use CPAN::Diff::Module;

    my $module = CPAN::Diff::Module->new(
        name          => 'Acme::Color',
        local_version => '0.01',
        cpan_version  => '0.02',
        cpan_dist     => $dist, # a CPAN::DistnameInfo object
    );

    $module->name;
    $module->local_version;
    $module->cpan_version;
    $module->cpan_dist;

DESCRIPTION

Object representing module metadata.

LICENSE

Copyright (C) Eric Johnson.

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

AUTHOR

Eric Johnson <eric.git@iijo.org>