1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Author: gregor herrmann <gregoa@debian.org>
Description: remove POD fragment
--- a/lib/Web/Simple/HackedPlack.pm
+++ b/lib/Web/Simple/HackedPlack.pm
@@ -66,30 +66,3 @@
}
1;
-__END__
-
-=head1 SYNOPSIS
-
- ## in your .cgi
- #!/usr/bin/perl
- use Plack::Server::CGI;
-
- # or Plack::Util::load_psgi("/path/to/app.psgi");
- my $app = sub {
- my $env = shift;
- return [
- 200,
- [ 'Content-Type' => 'text/plain', 'Content-Length' => 13 ],
- 'Hello, world!',
- ];
- };
-
- Plack::Server::CGI->new->run($app);
-
-=head1 SEE ALSO
-
-L<Plack::Server::Base>
-
-=cut
-
-
|