aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.PL
blob: 5809596297e9b62a555168b6d004266afcd7c735 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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';

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

auto_provides;
auto_install;

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

WriteAll;