Require HTTP::Body 0.9, added a few tests to check that blank params work properly
[catagits/Catalyst-Runtime.git] / Makefile.PL
1 use inc::Module::Install 0.64;
2
3 perl_version '5.8.1';
4
5 name 'Catalyst-Runtime';
6 all_from 'lib/Catalyst/Runtime.pm';
7
8 requires 'perl'               => '5.8.1';
9 requires 'Carp';
10 requires 'Class::Accessor::Fast';
11 requires 'Class::Data::Inheritable';
12 requires 'Class::Inspector' => '1.06';
13 requires 'CGI::Simple::Cookie';
14 requires 'Data::Dump';
15 requires 'File::Modified';
16 requires 'HTML::Entities';
17 requires 'HTTP::Body'    => '0.9';
18 requires 'HTTP::Headers' => '1.64';
19 requires 'HTTP::Request';
20 requires 'HTTP::Response';
21 requires 'HTTP::Request::AsCGI' => '0.5';
22 requires 'LWP::UserAgent';
23 requires 'Module::Pluggable' => '3.01';
24 requires 'NEXT';
25 requires 'Path::Class' => '0.09';
26 requires 'Scalar::Util';
27 requires 'Text::SimpleTable' => '0.03';
28 requires 'Time::HiRes';
29 requires 'Tree::Simple' => '1.15';
30 requires 'Tree::Simple::Visitor::FindByPath';
31 requires 'URI' => '1.35';
32 requires 'Text::Balanced'; # core in 5.8.x but mentioned for completeness
33
34 install_script glob('script/*.pl');
35 auto_install;
36 WriteAll;
37
38 print( '*' x 74, "\n" );
39 my $banner =
40   (qw/andyg chansen draven fordmason mst naughton sri jester
41       jrockway ningu nothingmuch LTjake/)[ int( rand(12) ) ]
42   . " is the greatest and gabb is "
43   . ( (localtime)[2] > 12 ? "drunk" : "hung over" )
44   . " again!";
45 print " $banner \n";
46 print( '*' x 74, "\n" );
47
48 print <<"EOF";
49
50  Important:
51
52     This library is for running Catalyst applications.
53
54     For development and use of catalyst.pl and myapp_create.pl, make sure
55     you also install the development tools package Catalyst::Devel.
56
57         perl -MCPANPLUS -e 'install Catalyst::Devel' # or
58         perl -MCPAN -e 'install Catalyst::Devel'
59
60     To get some commonly used plugins, as well as the TT view and DBIC 
61     model, install Task::Catalyst in the same way.
62
63  Have fun!
64 EOF