summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-01-06 18:01:53 -0600
committerJesse Luehrs <doy@tozt.net>2011-01-06 18:01:53 -0600
commit77b06b71f7803915004266172251673847f472cd (patch)
tree12e1fc037df0c6bbb13dd027b17c6da53c34b711 /lib
parent202668e2a49033b1c21c639ebad28b67be62ddb3 (diff)
downloadplack-client-77b06b71f7803915004266172251673847f472cd.tar.gz
plack-client-77b06b71f7803915004266172251673847f472cd.zip
stub out docs
Diffstat (limited to 'lib')
-rw-r--r--lib/Plack/Client.pm55
1 files changed, 55 insertions, 0 deletions
diff --git a/lib/Plack/Client.pm b/lib/Plack/Client.pm
index dfc4dff..fd02730 100644
--- a/lib/Plack/Client.pm
+++ b/lib/Plack/Client.pm
@@ -1,6 +1,7 @@
package Plack::Client;
use strict;
use warnings;
+# ABSTRACT: abstract interface to remote web servers and local PSGI apps
use HTTP::Message::PSGI;
use HTTP::Request;
@@ -9,6 +10,12 @@ use Plack::Middleware::ContentLength;
use Plack::Response;
use Scalar::Util qw(blessed reftype);
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+=cut
+
sub new {
my $class = shift;
my %params = @_;
@@ -185,4 +192,52 @@ sub post { shift->request('POST', @_) }
sub put { shift->request('PUT', @_) }
sub delete { shift->request('DELETE', @_) }
+=head1 BUGS
+
+No known bugs.
+
+Please report any bugs through RT: email
+C<bug-plack-client at rt.cpan.org>, or browse to
+L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Plack-Client>.
+
+=head1 SEE ALSO
+
+L<Plack>
+
+L<HTTP::Request>
+
+=head1 SUPPORT
+
+You can find this documentation for this module with the perldoc command.
+
+ perldoc Plack::Client
+
+You can also look for information at:
+
+=over 4
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/Plack-Client>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Plack-Client>
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Plack-Client>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Plack-Client>
+
+=back
+
+=head1 AUTHOR
+
+Jesse Luehrs <doy at tozt dot net>
+
+=cut
+
1;