Skip to content

Commit

Permalink
Removed Plack::Server. Was meant to be killed in 1.0 but forgotten.
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Jul 25, 2012
1 parent b8d90c1 commit 2cafc30
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 235 deletions.
14 changes: 5 additions & 9 deletions lib/Plack/Loader.pm
Expand Up @@ -37,15 +37,11 @@ sub load {
my($class, $server, @args) = @_;
my($server_class, $error);
for my $prefix (qw( Plack::Handler Plack::Server )) {
try {
$server_class = Plack::Util::load_class($server, $prefix);
} catch {
$error ||= $_;
};
last if $server_class;
last if $error && $error !~ /^Can't locate Plack\/Handler\//;
}
try {
$server_class = Plack::Util::load_class($server, 'Plack::Handler');
} catch {
$error ||= $_;
};
if ($server_class) {
$server_class->new(@args);
Expand Down
17 changes: 0 additions & 17 deletions lib/Plack/Server.pm

This file was deleted.

24 changes: 0 additions & 24 deletions lib/Plack/Server/Apache1.pm

This file was deleted.

24 changes: 0 additions & 24 deletions lib/Plack/Server/Apache2.pm

This file was deleted.

23 changes: 0 additions & 23 deletions lib/Plack/Server/CGI.pm

This file was deleted.

24 changes: 0 additions & 24 deletions lib/Plack/Server/FCGI.pm

This file was deleted.

1 change: 0 additions & 1 deletion lib/Plack/Server/README

This file was deleted.

27 changes: 0 additions & 27 deletions lib/Plack/Server/ServerSimple.pm

This file was deleted.

24 changes: 0 additions & 24 deletions lib/Plack/Server/Standalone.pm

This file was deleted.

28 changes: 0 additions & 28 deletions lib/Plack/Server/Standalone/Prefork.pm

This file was deleted.

34 changes: 0 additions & 34 deletions t/Plack-Server/compat.t

This file was deleted.

0 comments on commit 2cafc30

Please sign in to comment.