Don't rely on BUILD returning the instance.
[gitmo/MooseX-Emulate-Class-Accessor-Fast.git] / Makefile.PL
CommitLineData
c5a105b3 1#! /usr/bin/perl -w
2
3# Load the Module::Install bundled in ./inc/
4use inc::Module::Install;
5
6# Define metadata
7name 'MooseX-Emulate-Class-Accessor-Fast';
c5a105b3 8all_from 'lib/MooseX/Emulate/Class/Accessor/Fast.pm';
9
10# Specific dependencies
00feab71 11requires 'Moose' => '0.74';
cef322f3 12requires 'namespace::clean' => 0;
1b694d4a 13test_requires 'Test::More' => 0;
c858b57e 14test_requires 'Test::Exception' => 0;
c5a105b3 15
c5a105b3 16WriteAll;