need package::stash::conflicts
[gitmo/Moose.git] / Makefile.PL
CommitLineData
38bf2a25 1use strict;
2use warnings;
3
4use Config;
5use ExtUtils::MakeMaker;
6
004ac8d9 7use lib 'inc';
8
9use MMHelper;
d62bc8fd 10use MyInline;
004ac8d9 11
38bf2a25 12warn <<'EOF';
13
14 ********************************* WARNING **********************************
15
d2aeefa7 16 This module uses Dist::Zilla for development. This Makefile.PL will let you
17 run the tests, but you are encouraged to install Dist::Zilla and the needed
38bf2a25 18 plugins if you intend on doing any serious hacking.
19
20 ****************************************************************************
21
22EOF
23
d62bc8fd 24system( $^X, 'author/extract-inline-tests', '--quiet' );
25
004ac8d9 26eval MMHelper::my_package_subs();
38bf2a25 27
28WriteMakefile(
29 NAME => 'Moose',
004ac8d9 30 test => { TESTS => 't/*.t t/*/*.t' },
6bf5d14d 31 MMHelper::mm_args('dev'),
38bf2a25 32);