Added recursive -r flag to prove example
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / HTTP.pm
CommitLineData
ca61af20 1package Catalyst::Engine::HTTP;
45374ac6 2
3use strict;
c2e8e6fa 4use base 'Catalyst::Engine::HTTP::Daemon';
45374ac6 5
6=head1 NAME
7
ca61af20 8Catalyst::Engine::HTTP - Catalyst HTTP Engine
45374ac6 9
10=head1 SYNOPSIS
11
ca61af20 12A script using the Catalyst::Engine::HTTP module might look like:
45374ac6 13
14 #!/usr/bin/perl -w
15
ca61af20 16 BEGIN { $ENV{CATALYST_ENGINE} = 'HTTP' }
45374ac6 17
18 use strict;
19 use lib '/path/to/MyApp/lib';
20 use MyApp;
21
22 MyApp->run;
23
24=head1 DESCRIPTION
25
26This is the Catalyst engine specialized for development and testing.
27
45374ac6 28=head1 SEE ALSO
29
c2e8e6fa 30L<Catalyst>, L<Catalyst::Engine>, L<Catalyst::Engine::HTTP::Daemon>.
45374ac6 31
32=head1 AUTHOR
33
34Sebastian Riedel, C<sri@cpan.org>
35Christian Hansen, C<ch@ngmedia.com>
36
37=head1 COPYRIGHT
38
39This program is free software, you can redistribute it and/or modify it under
40the same terms as Perl itself.
41
42=cut
43
45374ac6 441;