da68f02364c2fd9a1dcf0ace9c8455edab50e935
[gitmo/MooseX-AlwaysCoerce.git] / Makefile.PL
1 use inc::Module::Install;
2
3 name     'MooseX-AlwaysCoerce';
4 all_from 'lib/MooseX/AlwaysCoerce.pm';
5 author   'Rafael Kitover <rkitover@cpan.org>';
6 license  'perl';
7
8 test_requires 'Test::More';
9
10 requires 'Moose';
11
12 auto_provides;
13 auto_install;
14
15 resources repository =>
16     'git://github.com/rkitover/mx-alwayscoerce.git';
17
18 WriteAll;