Ok, I don't feel so dirty now. Still need to implement method filtering, such that...
[catagits/CatalystX-DynamicComponent.git] / Makefile.PL
CommitLineData
8798165a 1# IMPORTANT: if you delete this file your app will not work as
2# expected. you have been warned
3use inc::Module::Install;
4
5name 'DynamicAppDemo';
6all_from 'lib/DynamicAppDemo.pm';
7
d42c5c76 8requires 'MooseX::Types::Structured' => '0.12';
9requires 'namespace::autoclean';
10requires 'MooseX::Types' => '0.10';
53a42ae0 11requires 'MooseX::Role::Parameterized' => '0.05';
7d26c84b 12requires 'Catalyst::Model::Adaptor';
13requires 'Catalyst::Runtime' => '5.80001';
8798165a 14requires 'Catalyst::Plugin::ConfigLoader';
fa2fa199 15requires 'YAML';
16
8798165a 17catalyst;
18
19install_script glob('script/*.pl');
20auto_install;
21WriteAll;