NAME
Module::Install::AutomatedTester - A Module::Install extension to detect
whether we are being tested by CPAN Testers.
SYNOPSIS
# In Makefile.PL
use inc::Module::Install;
if ( auto_tester ) {
# Do something if we are running under a CPAN Tester
# like add some prereqs, etc.
}
DESCRIPTION
CPAN Testers are great and do a worthy and thankle
more»
#line 1
package Module::Install::ReadmeFromPod;
use strict;
use warnings;
use base qw(Module::Install::Base);
use vars qw($VERSION);
$VERSION = '0.06';
sub readme_from {
my $self = shift;
return unless $Module::Install::AUTHOR;
my $file = shift || return;
my $clean = shift;
require Pod::Text;
my $parser = Pod::Text->new();
open README, '> README' or die "$!\n";
$parser->output_f
more»