Thats action registration sorted out. Now I just need to introspect all the models...
[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
7d26c84b 8requires 'Catalyst::Model::Adaptor';
9requires 'Catalyst::Runtime' => '5.80001';
8798165a 10requires 'Catalyst::Plugin::ConfigLoader';
fa2fa199 11requires 'YAML';
12
8798165a 13catalyst;
14
15install_script glob('script/*.pl');
16auto_install;
17WriteAll;