API-Handle
view release on metacpan or search on metacpan
"generated_by" : "Dist::Zilla version 4.300028, CPAN::Meta::Converter version 2.120921",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "API-Handle",
"prereqs" : {
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "6.30"
}
},
"develop" : {
"requires" : {
"Test::Pod" : "1.41"
}
},
"runtime" : {
---
abstract: 'API Handle'
author:
- 'Nour Sharabash <amirite@cpan.org>'
build_requires: {}
configure_requires:
ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.300028, CPAN::Meta::Converter version 2.120921'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: API-Handle
requires:
Carp: 0
lib/API/Handle/Google/DFP.pm view on Meta::CPAN
, lazy => 1
, default => sub {
my $self = shift;
require Nour::Config;
return new Nour::Config (
-base => 'config/google/dfp'
);
}
);
# This is where we configure how the user-agent transforms
# outgoing and incoming requests and responses.
# perldoc LWP::UserAgent.
around BUILD => sub {
my ( $next, $self, @args, $prev ) = @_;
# Put code that pre-empts API::Handle::BUILD before this $prev line.
$prev = $self->$next( @args );
# Put code that depends on API::Handle::BUILD after this $prev line.
lib/API/Handle/OpenX.pm view on Meta::CPAN
, lazy => 1
, default => sub {
my $self = shift;
require Nour::Config;
return new Nour::Config (
-base => 'config/openx'
);
}
);
# This is where we configure how the user-agent transforms
# outgoing and incoming requests and responses.
# See also: API::Handle::Google::DFP.
around BUILD => sub {
my ( $next, $self, @args, $prev ) = @_;
my $conf = $self->config;
$self->uri( $conf->{oauth}{api_url} );
( run in 0.361 second using v1.01-cache-2.11-cpan-283623ac599 )