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

NAME

App::cpanm::meta::checker::State::Duplicates - Data tracking for duplicate distribution meta-data

VERSION

version 0.001001

METHODS

seen_dist_version

  ->seen_dist_version( 'Dist-Name', '5.000' );

has_duplicates

  if ( $o->has_duplicates( 'Dist-Name' ) ) {
    ...
  }

reported_duplicates

  if ( not $o->reported_duplicates('Dist-Name') ) {
    /* report dups  */
    $o->reported_duplicates('Dist-Name', 1);
  }

duplicate_versions

  for my $v ( $o->duplicate_versions('Dist-Name') ) {

  }

ATTRIBUTES

dists

AUTHOR

Kent Fredric <kentfredric@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Kent Fredric <kentfredric@gmail.com>.

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