aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.PL
blob: 39093b2d0b1d875b27e82cb80d3a2a16dfc36bae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use inc::Module::Install;

name     'MooseX-AlwaysCoerce';
all_from 'lib/MooseX/AlwaysCoerce.pm';
author   'Rafael Kitover <rkitover@cpan.org>';
license  'perl';

test_requires 'Test::More' => '0.94';
test_requires 'Test::Exception';
test_requires 'Test::NoWarnings';

requires 'Moose';
requires 'namespace::autoclean';
requires 'MooseX::ClassAttribute';

auto_provides;
auto_install;

resources repository =>
    'git://github.com/rkitover/mx-alwayscoerce.git';

WriteAll;