]> Dogcows Code - chaz/chatty/blobdiff - Makefile.PL
add unicode support
[chaz/chatty] / Makefile.PL
index 40bca1ba3b02fe9d91a862a2efc13cd0fda3c05e..c5c28ca73444a3c8029e0763201cf6aadda25bbd 100644 (file)
@@ -11,7 +11,13 @@ all_from 'lib/Chatty.pm';
 
 requires 'Catalyst::Runtime' => '5.90002';
 requires 'Catalyst::Plugin::ConfigLoader';
+requires 'Catalyst::Plugin::StackTrace';
 requires 'Catalyst::Plugin::Static::Simple';
+requires 'Catalyst::Plugin::Authentication';
+requires 'Catalyst::Plugin::Session';
+requires 'Catalyst::Plugin::Session::Store::FastMmap';
+requires 'Catalyst::Plugin::Session::State::Cookie';
+requires 'Catalyst::Plugin::Unicode::Encoding';
 requires 'Catalyst::Action::RenderView';
 requires 'Moose';
 requires 'namespace::autoclean';
@@ -20,6 +26,16 @@ requires 'Config::General'; # This should reflect the config file format you've
 test_requires 'Test::More' => '0.88';
 catalyst;
 
+# Add targets to run the developer server.
+sub MY::postamble {
+       return <<END;
+run: all
+       ./script/chatty_server.pl -r
+debug: all
+       ./script/chatty_server.pl -r -d
+END
+}
+
 install_script glob('script/*.pl');
 auto_install;
 WriteAll;
This page took 0.019531 seconds and 4 git commands to generate.