Fix duplicate short options issue
[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 has '+help' => (cmd_aliases => 'h');
9
10 __PACKAGE__->meta->make_immutable;
11
12 =head1 NAME
13
14 Catalyst::Script::CGI - The CGI Catalyst Script
15
16 =head1 SYNOPSIS
17
18 See L<Catalyst>.
19
20 =head1 DESCRIPTION
21
22 This is a script to run the Catalyst engine specialized for the CGI environment.
23
24 =head1 AUTHORS
25
26 Catalyst Contributors, see Catalyst.pm
27
28 =head1 COPYRIGHT
29
30 This library is free software. You can redistribute it and/or modify it under
31 the same terms as Perl itself.
32
33 =cut