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