Added CDBI helper and added some documentation
[catagits/Catalyst-Runtime.git] / Makefile.PL
CommitLineData
fc7ec1d9 1use ExtUtils::MakeMaker;
2
3WriteMakefile(
4 NAME => 'Catalyst',
5 VERSION_FROM => 'lib/Catalyst.pm',
6 EXE_FILES => ['bin/catalyst'],
7 PREREQ_PM => {
8 UNIVERSAL::require => 0,
9 CGI::Simple => 0,
10 Class::Accessor::Fast => 0,
11 Class::Data::Inheritable => 0,
12 HTML::Entities => 0,
13 HTTP::Headers => 0,
14 Module::Pluggable::Fast => 0
15 }
16);
17
18my $gabb =
19 int( rand(2) ) == 1
20 ? "Gabbana is the greatest!"
21 : "Gabbana is drunk again!";
22print "$gabb\n";