]> Dogcows Code - chaz/chatty/blob - Makefile.PL
baf385c7c352e964767e2fc246412d7f9488bacd
[chaz/chatty] / Makefile.PL
1 #!/usr/bin/env perl
2 # IMPORTANT: if you delete this file your app will not work as
3 # expected. You have been warned.
4 use inc::Module::Install;
5 use Module::Install::Catalyst; # Complain loudly if you don't have
6 # Catalyst::Devel installed or haven't said
7 # 'make dist' to create a standalone tarball.
8
9 name 'Chatty';
10 all_from 'lib/Chatty.pm';
11
12 requires 'Catalyst::Runtime' => '5.90002';
13 requires 'Catalyst::Plugin::ConfigLoader';
14 requires 'Catalyst::Plugin::StackTrace';
15 requires 'Catalyst::Plugin::Static::Simple';
16 requires 'Catalyst::Plugin::Authentication';
17 requires 'Catalyst::Plugin::Session';
18 requires 'Catalyst::Plugin::Session::Store::FastMmap';
19 requires 'Catalyst::Plugin::Session::State::Cookie';
20 requires 'Catalyst::Plugin::Unicode::Encoding';
21 requires 'Catalyst::Action::RenderView';
22 requires 'JSON';
23 requires 'Moose';
24 requires 'namespace::autoclean';
25 requires 'Config::General'; # This should reflect the config file format you've chosen
26 # See Catalyst::Plugin::ConfigLoader for supported formats
27 test_requires 'Test::More' => '0.88';
28 catalyst;
29
30 # Add targets to run the developer server.
31 sub MY::postamble {
32 return <<END;
33 run: all
34 ./script/chatty_server.pl -r
35 debug: all
36 ./script/chatty_server.pl -r -d
37 END
38 }
39
40 install_script glob('script/*.pl');
41 auto_install;
42 WriteAll;
This page took 0.033053 seconds and 3 git commands to generate.