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