Add failing test for Class::Accessor::Chained::Fast compatibility.
[gitmo/MooseX-Emulate-Class-Accessor-Fast.git] / Makefile.PL
1 #! /usr/bin/perl -w
2
3 # Load the Module::Install bundled in ./inc/
4 use inc::Module::Install;
5
6 # Define metadata
7 name 'MooseX-Emulate-Class-Accessor-Fast';
8 abstract 'Emulate Class::Accessor::Fast using attributes';
9 all_from 'lib/MooseX/Emulate/Class/Accessor/Fast.pm';
10
11 # Specific dependencies
12 requires 'Moose' => '0.31';
13 requires 'namespace::clean' => 0;
14 build_requires 'Test::More' => 0;
15
16 WriteAll;