File: pod_fragment.patch

package info (click to toggle)
libweb-simple-perl 0.002%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 228 kB
  • ctags: 202
  • sloc: perl: 1,995; sh: 48; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 642 bytes parent folder | download
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
-
-