perl / Git / Mail / Address.pmon commit Merge branch 'pw/sequencer-in-process-commit' (0f57f73)
   1package Git::Mail::Address;
   2use 5.008;
   3use strict;
   4use warnings;
   5
   6=head1 NAME
   7
   8Git::Mail::Address - Wrapper for the L<Mail::Address> module, in case it's not installed
   9
  10=head1 DESCRIPTION
  11
  12This module is only intended to be used for code shipping in the
  13C<git.git> repository. Use it for anything else at your peril!
  14
  15=cut
  16
  17eval {
  18    require Mail::Address;
  19    1;
  20} or do {
  21    require Git::FromCPAN::Mail::Address;
  22};
  23
  241;