- removed C::E::Server
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / Server.pm
diff --git a/lib/Catalyst/Engine/Server.pm b/lib/Catalyst/Engine/Server.pm
deleted file mode 100644 (file)
index 8db6d33..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-package Catalyst::Engine::Server;
-
-use strict;
-use base 'Catalyst::Engine::LWP::Daemon';
-
-=head1 NAME
-
-Catalyst::Engine::Server - Catalyst Server Engine
-
-=head1 SYNOPSIS
-
-A script using the Catalyst::Engine::Server module might look like:
-
-    #!/usr/bin/perl -w
-
-    BEGIN { 
-       $ENV{CATALYST_ENGINE} = 'Server';
-    }
-
-    use strict;
-    use lib '/path/to/MyApp/lib';
-    use MyApp;
-
-    MyApp->run;
-
-=head1 DESCRIPTION
-
-This is the Catalyst engine specialized for development and testing.
-
-=head1 SEE ALSO
-
-L<Catalyst>, L<Catalyst::Engine::LWP::Daemon>.
-
-=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;