Acme-Thoroughly-Modern-Perl
view release on metacpan or search on metacpan
Revision history for Perl module Acme::Thoroughly::Modern::Perl
v0.4.1 2014-04-01 00:00:00
- original version
Makefile.PL view on Meta::CPAN
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker 6.59;
WriteMakefile(
NAME => 'Acme::Thoroughly::Modern::Perl',
AUTHOR => 'Jim Bacon <jim@nortx.com>',
VERSION_FROM => 'lib/Acme/Thoroughly/Modern/Perl.pm',
ABSTRACT_FROM => 'lib/Acme/Thoroughly/Modern/Perl.pm',
LICENSE => 'Perl',
PL_FILES => {}, CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 6.59,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
TODO list for Perl module Acme::Thoroughly::Modern::Perl
- Bundle time machine with distribution
lib/Acme/Thoroughly/Modern/Perl.pm view on Meta::CPAN
package Acme::Thoroughly::Modern::Perl;
use strict;
use warnings;
our $VERSION = 'v0.4.1';
my @now = localtime();
my $yr = $now[5] - 100;
# This actually calculates what might be the current minimum version
lib/Acme/Thoroughly/Modern/Perl.pm view on Meta::CPAN
exit 255;
}
1;
__END__
=pod
=head1 NAME
Acme::Thoroughly::Modern::Perl - Go where no Perl has gone before!
=head1 SYNOPSIS
use Acme::Thoroughly::Modern::Perl;
=head1 DESCRIPTION
This module allows one to not only be on the bleeding edge of Perl, but to
go beyond!
Unlike other modules that attempt to include advanced features, there is
no need to specify a given version or release year. Acme is committed to
making the user experience as simple and error-free as possible and
t/00-load.t view on Meta::CPAN
# Test::More is use()ed here so read its man page ( perldoc Test::More )
# for help writing your own test scripts.
use strict;
use warnings FATAL => 'all';
use Test::More;
# tells A::T::M::P to exit with 0 instead of 255
$ENV{ATMP_TEST} = 1;
use_ok( 'Acme::Thoroughly::Modern::Perl' );
diag("Testing Acme::Thoroughly::Modern::Perl $Acme::Thoroughly::Modern::Perl::VERSION, Perl $], $^X");
done_testing();
__END__
( run in 0.271 second using v1.01-cache-2.11-cpan-a5abf4f5562 )