Merge branch 'master' into psgi
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / CGI.pm
CommitLineData
0ba6e8aa 1package Catalyst::Script::CGI;
accb0640 2use Moose;
7f67b4a9 3use namespace::autoclean;
accb0640 4
c821df21 5sub _plack_engine_name { 'CGI' }
6
d3082fac 7with 'Catalyst::ScriptRole';
8
9__PACKAGE__->meta->make_immutable;
10
11=head1 NAME
12
13Catalyst::Script::CGI - The CGI Catalyst Script
14
15=head1 SYNOPSIS
16
3dcfb4c8 17 myapp_cgi.pl [options]
18
19 Options:
9c74923d 20 -? --help display this help and exits
d3082fac 21
22=head1 DESCRIPTION
accb0640 23
cbaaecc0 24This is a script to run the Catalyst engine specialized for the CGI environment.
8a289b5f 25
d3082fac 26=head1 AUTHORS
8a289b5f 27
d3082fac 28Catalyst Contributors, see Catalyst.pm
accb0640 29
d3082fac 30=head1 COPYRIGHT
57dc50b0 31
d3082fac 32This library is free software. You can redistribute it and/or modify it under
33the same terms as Perl itself.
accb0640 34
d3082fac 35=cut