Rename FCGI to FastCGI
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / FCGI.pm
diff --git a/lib/Catalyst/Engine/FCGI.pm b/lib/Catalyst/Engine/FCGI.pm
deleted file mode 100644 (file)
index 6198ca0..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-package Catalyst::Engine::FCGI;
-
-use strict;
-use base qw(Catalyst::Engine::FCGI::Base Catalyst::Engine::CGI);
-
-=head1 NAME
-
-Catalyst::Engine::FCGI - Catalyst FCGI Engine
-
-=head1 SYNOPSIS
-
-A script using the Catalyst::Engine::FCGI module might look like:
-
-    #!/usr/bin/perl -w
-
-    BEGIN { 
-       $ENV{CATALYST_ENGINE} = 'FCGI';
-    }
-
-    use strict;
-    use lib '/path/to/MyApp/lib';
-    use MyApp;
-
-    MyApp->run;
-
-=head1 DESCRIPTION
-
-This is the Catalyst engine for FastCGI.
-
-=head1 SEE ALSO
-
-L<Catalyst>, L<Catalyst::Engine::CGI>.
-
-=head1 AUTHOR
-
-Sebastian Riedel, C<sri@cpan.org>
-Christian Hansen, C<ch@ngmedia.com>
-
-=head1 COPYRIGHT
-
-This program is free software, you can redistribute it and/or modify it under
-the same terms as Perl itself.
-
-=cut
-
-1;