AnyEvent-HTTP-ScopedClient
view release on metacpan or search on metacpan
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: AnyEvent-HTTP-ScopedClient
requires:
AnyEvent::HTTP: 0
Encode: 0
HTTP::Request: 0
MIME::Base64: 0
Moose: 0
Try::Tiny: 0
URI: 0
URI::Escape: 0
URI::QueryParam: 0
namespace::autoclean: 0
version: 0.0.5
Makefile.PL view on Meta::CPAN
"DISTNAME" => "AnyEvent-HTTP-ScopedClient",
"EXE_FILES" => [],
"LICENSE" => "perl",
"NAME" => "AnyEvent::HTTP::ScopedClient",
"PREREQ_PM" => {
"AnyEvent::HTTP" => 0,
"Encode" => 0,
"HTTP::Request" => 0,
"MIME::Base64" => 0,
"Moose" => 0,
"Try::Tiny" => 0,
"URI" => 0,
"URI::Escape" => 0,
"URI::QueryParam" => 0,
"namespace::autoclean" => 0
},
"TEST_REQUIRES" => {
"AnyEvent" => 0,
"Test::More" => 0,
"strict" => 0,
"utf8" => 0,
lib/AnyEvent/HTTP/ScopedClient.pm view on Meta::CPAN
{
$AnyEvent::HTTP::ScopedClient::VERSION = '0.0.5';
}
# ABSTRACT: L<AnyEvent> based L<https://github.com/technoweenie/node-scoped-http-client>
use Moose;
use namespace::autoclean;
use URI;
use Try::Tiny;
use MIME::Base64;
use HTTP::Request;
use Encode qw/encode_utf8/;
use AnyEvent::HTTP;
use URI::QueryParam;
use URI::Escape;
has 'options' => (
is => 'ro',
isa => 'HashRef',
( run in 0.686 second using v1.01-cache-2.11-cpan-05444aca049 )