diff options
author | Edmund von der Burg <evdb@mysociety.org> | 2011-02-22 14:48:49 +0000 |
---|---|---|
committer | Edmund von der Burg <evdb@mysociety.org> | 2011-02-22 14:48:49 +0000 |
commit | 6d4dbdb7bfa1af7c1a34c57fe01198e861fb4b4a (patch) | |
tree | 7abf37f3561c3cda205d979bfc2c7df322c667e8 /Makefile.PL | |
parent | 79240856cba7e507b5500288cbfa1c99263d824b (diff) |
Created app using catalyst.pl
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 000000000..bd6667379 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,26 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use inc::Module::Install; +use Module::Install::Catalyst; + +name 'FixMyStreet-App'; +all_from 'perllib/FixMyStreet/App.pm'; + +requires 'Catalyst::Runtime' => '5.80031'; +requires 'Catalyst::Plugin::ConfigLoader'; +requires 'Catalyst::Plugin::Static::Simple'; +requires 'Catalyst::Action::RenderView'; +requires 'Moose'; +requires 'namespace::autoclean'; +requires 'Config::General'; + +test_requires 'Test::More' => '0.88'; + +catalyst; + +install_script glob('script/*.pl'); +auto_install; +WriteAll; |