Date-Tolkien-Shire-Data
view release on metacpan or search on metacpan
inc/My/Module/Meta.pm view on Meta::CPAN
package My::Module::Meta;
use 5.006002;
use strict;
use warnings;
use Carp;
sub new {
my ( $class ) = @_;
ref $class and $class = ref $class;
my $self = {
distribution => $ENV{MAKING_MODULE_DISTRIBUTION},
};
bless $self, $class;
return $self;
}
sub abstract {
return 'Data functionality for Shire calendars.';
}
sub add_to_cleanup {
return [ qw{ cover_db xt/author/optionals } ];
}
sub author {
return 'Thomas R. Wyant, III F<wyant at cpan dot org>';
}
sub build_requires {
return +{
'Test::More' => 0.88, # Because of done_testing().
};
}
sub configure_requires {
return +{
'Module::Metadata' => 0,
'lib' => 0,
'strict' => 0,
'warnings' => 0,
};
}
sub dist_name {
return 'Date-Tolkien-Shire-Data';
}
sub distribution {
my ( $self ) = @_;
return $self->{distribution};
}
sub license {
return 'perl';
}
sub meta_merge {
my ( undef, @extra ) = @_;
return {
'meta-spec' => {
version => 2,
},
dynamic_config => 1,
resources => {
bugtracker => {
web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Date-Tolkien-Shire-Data',
# web => 'https://github.com/trwyant/perl-Date-Tolkien-Shire-Data/issues',
mailto => 'wyant@cpan.org',
},
license => 'http://dev.perl.org/licenses/',
repository => {
type => 'git',
url => 'git://github.com/trwyant/perl-Date-Tolkien-Shire-Data.git',
web => 'https://github.com/trwyant/perl-Date-Tolkien-Shire-Data',
},
},
@extra,
};
( run in 1.491 second using v1.01-cache-2.11-cpan-39bf76dae61 )