Bump version to 0.003006, update Changes and README.
[catagits/Gitalist.git] / script / gitalist_cgi.pl
1 #!/usr/bin/perl
2
3 use FindBin;
4 BEGIN {
5     my $env = "$FindBin::Bin/env";
6     if (-r $env) {
7         do $env or die $@;
8     }
9 }
10
11 use Catalyst::ScriptRunner;
12 Catalyst::ScriptRunner->run('Gitalist', 'CGI');
13
14 1;
15
16 =head1 NAME
17
18 gitalist_cgi.pl - Catalyst CGI
19
20 =head1 SYNOPSIS
21
22 See L<Catalyst::Manual>
23
24 =head1 DESCRIPTION
25
26 Run a Catalyst application as a cgi script.
27
28 =head1 AUTHORS
29
30 Catalyst Contributors, see Catalyst.pm
31
32 =head1 COPYRIGHT
33
34 This library is free software. You can redistribute it and/or modify
35 it under the same terms as Perl itself.
36
37 =cut
38