Merge 'trunk' into 'better_scripts'
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / CGI.pm
CommitLineData
0ba6e8aa 1package Catalyst::Script::CGI;
accb0640 2use Moose;
accb0640 3BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
7f67b4a9 4use namespace::autoclean;
accb0640 5
d3082fac 6with 'Catalyst::ScriptRole';
7
8__PACKAGE__->meta->make_immutable;
9
10=head1 NAME
11
12Catalyst::Script::CGI - The CGI Catalyst Script
13
14=head1 SYNOPSIS
15
16See L<Catalyst>.
17
18=head1 DESCRIPTION
accb0640 19
cbaaecc0 20This is a script to run the Catalyst engine specialized for the CGI environment.
8a289b5f 21
d3082fac 22=head1 AUTHORS
8a289b5f 23
d3082fac 24Catalyst Contributors, see Catalyst.pm
accb0640 25
d3082fac 26=head1 COPYRIGHT
57dc50b0 27
d3082fac 28This library is free software. You can redistribute it and/or modify it under
29the same terms as Perl itself.
accb0640 30
d3082fac 31=cut