From 77b06b71f7803915004266172251673847f472cd Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 6 Jan 2011 18:01:53 -0600 Subject: stub out docs --- lib/Plack/Client.pm | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) (limited to 'lib') 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, or browse to +L. + +=head1 SEE ALSO + +L + +L + +=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 + +=item * CPAN Ratings + +L + +=item * RT: CPAN's request tracker + +L + +=item * Search CPAN + +L + +=back + +=head1 AUTHOR + +Jesse Luehrs + +=cut + 1; -- cgit v1.2.3-54-g00ecf