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