October 27, 2005 |
Two or Three Things I Learned ... |
Prev
Next
|
package ExtUtils::ModuleMaker::Defaults;
my %default_values = (
VERSION => '0.01',
ABSTRACT => 'Module abstract (<= 44 characters) goes here',
AUTHOR => 'A. U. Thor',
CPANID => 'MODAUTHOR',
ORGANIZATION => 'XYZ Corp.',
WEBSITE => 'http://a.galaxy.far.far.away/modules',
EMAIL => 'a.u.thor@a.galaxy.far.far.away',
BUILD_SYSTEM => 'ExtUtils::MakeMaker',
COMPACT => 0,
INTERACTIVE => 0,
...
);
sub default_values {
my $self = shift;
return { %default_values };
}