3a9f449b181c70f151fc79c61a38a7e738eb7cea
[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 SEE ALSO
27
28 L<Catalyst::ScriptRunner>
29
30 =head1 AUTHORS
31
32 Catalyst Contributors, see Catalyst.pm
33
34 =head1 COPYRIGHT
35
36 This library is free software. You can redistribute it and/or modify it under
37 the same terms as Perl itself.
38
39 =cut