Working on a dist for WrapCGI...
[catagits/Catalyst-Controller-WrapCGI.git] / lib / Catalyst / Plugin / CGIBin.pm
CommitLineData
32b32c62 1package Catalyst::Plugin::CGIBin;
2
3use strict;
4use warnings;
5
6=head1 NAME
7
8Catalyst::Plugin::CGIBin - Server CGIs from root/cgi-bin
9
10=head1 VERSION
11
12Version 0.001
13
14=cut
15
16our $VERSION = '0.001';
17
18
19=head1 SYNOPSIS
20
21In your .conf:
22 <Plugin::CGIBin>
23 controller MyApp::Controller::Foo
24 </Plugin::CGIBin>
25
26 <MyApp::Controller::Foo>
27 <CGI>
28 pass_env PERL5LIB
29 pass_env PATH
30 </CGI>
31 </MyApp::Controller::Foo>
32
33=head1 DESCRIPTION
34
35Dispatches to CGI files in root/cgi-bin through the configured controller, which
36must inherit from L<Catalyst::Controller::WrapCGI>.
37
38I still need to write the code :)
39
40=cut
41
42=head1 AUTHOR
43
44Rafael Kitover, C<< <rkitover at cpan.org> >>
45
46=head1 BUGS
47
48Please report any bugs or feature requests to C<bug-catalyst-controller-wrapcgi at
49rt.cpan.org>, or through the web interface at
50L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Catalyst-Controller-WrapCGI>.
51I will be notified, and then you'll automatically be notified of progress on
52your bug as I make changes.
53
54=head1 SUPPORT
55
56More information at:
57
58=over 4
59
60=item * RT: CPAN's request tracker
61
62L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Catalyst-Controller-WrapCGI>
63
64=item * AnnoCPAN: Annotated CPAN documentation
65
66L<http://annocpan.org/dist/Catalyst-Controller-WrapCGI>
67
68=item * CPAN Ratings
69
70L<http://cpanratings.perl.org/d/Catalyst-Controller-WrapCGI>
71
72=item * Search CPAN
73
74L<http://search.cpan.org/dist/Catalyst-Controller-WrapCGI>
75
76=back
77
78=head1 COPYRIGHT & LICENSE
79
80Copyright (c) 2008 Rafael Kitover
81
82This program is free software; you can redistribute it and/or modify it
83under the same terms as Perl itself.
84
85=cut
86
871; # End of Catalyst::Plugin::CGIBin
88
89# vim: expandtab shiftwidth=4 ts=4 tw=80: