eliminate ticket on older version
[andk-cpan-tools.git] / CPAN-Blame / script / cpan_blame_cgi.pl
blob23bf7a1220ff37065a094bf49bbfc32f0ce8a56e
1 #!/usr/bin/env perl
3 BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
5 use strict;
6 use warnings;
7 use FindBin;
8 use lib "$FindBin::Bin/../lib";
9 use CPAN::Blame;
11 CPAN::Blame->run;
15 =head1 NAME
17 cpan_blame_cgi.pl - Catalyst CGI
19 =head1 SYNOPSIS
21 See L<Catalyst::Manual>
23 =head1 DESCRIPTION
25 Run a Catalyst application as a cgi script.
27 =head1 AUTHORS
29 Catalyst Contributors, see Catalyst.pm
31 =head1 COPYRIGHT
34 This library is free software. You can redistribute it and/or modify
35 it under the same terms as Perl itself.
37 =cut