Use get_all_attributes instead of the deprecated compute_all_applicable_attributes.
[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';
50757665 8abstract 'Emulate Class::Accessor::Fast using attributes';
c5a105b3 9all_from 'lib/MooseX/Emulate/Class/Accessor/Fast.pm';
10
11# Specific dependencies
30cbeb5e 12requires 'Moose' => '0.31';
cef322f3 13requires 'namespace::clean' => 0;
c5a105b3 14build_requires 'Test::More' => 0;
15
c5a105b3 16WriteAll;