Notes + extra test for EPO workshop and YAPC::EU 2009
[catagits/catbook-code.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 'LolCatalyst-Lite';
6 all_from 'lib/LolCatalyst/Lite.pm';
7
8 requires 'Catalyst::Runtime' => '5.7014';
9 requires 'Catalyst::Plugin::ConfigLoader';
10 requires 'Catalyst::Plugin::Static::Simple';
11 requires 'Catalyst::Action::RenderView';
12 requires 'parent';
13 requires 'Config::General'; # This should reflect the config file format you've chosen
14                  # See Catalyst::Plugin::ConfigLoader for supported formats
15 requires 'Acme::LOLCAT';
16 requires 'Catalyst::Plugin::Unicode';
17 requires 'Catalyst::View::TT';
18 requires 'Catalyst::View::JSON';
19 requires 'Moose';
20 requires 'namespace::clean';
21 requires 'aliased';
22 requires 'Catalyst::Model::Adaptor';
23 catalyst;
24
25 test_requires 'Test::Exception';
26 test_requires 'Test::More';
27
28
29 tests_recursive;
30
31 install_script glob('script/*.pl');
32 auto_install;
33 WriteAll;