Thats action registration sorted out. Now I just need to introspect all the models...
[catagits/CatalystX-DynamicComponent.git] / Makefile.PL
1 # IMPORTANT: if you delete this file your app will not work as
2 # expected.  you have been warned
3 use inc::Module::Install;
4
5 name 'DynamicAppDemo';
6 all_from 'lib/DynamicAppDemo.pm';
7
8 requires 'Catalyst::Model::Adaptor';
9 requires 'Catalyst::Runtime' => '5.80001';
10 requires 'Catalyst::Plugin::ConfigLoader';
11 requires 'YAML';
12
13 catalyst;
14
15 install_script glob('script/*.pl');
16 auto_install;
17 WriteAll;