Akamai-Open-DiagnosticTools
view release on metacpan or search on metacpan
"requires" : {
"Test::More" : "0",
"Test::NoTabs" : "0",
"Test::Pod" : "1.41"
}
},
"runtime" : {
"requires" : {
"Akamai::Open::Client" : "0",
"Akamai::Open::Request::EdgeGridV1" : "0",
"JSON" : "0",
"Moose" : "0",
"constant" : "0",
"perl" : "v5.10.0",
"strict" : "0",
"warnings" : "0"
}
},
"test" : {
"requires" : {
"Akamai::Open::Client" : "0",
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.013, CPAN::Meta::Converter version 2.132510'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: Akamai-Open-DiagnosticTools
requires:
Akamai::Open::Client: 0
Akamai::Open::Request::EdgeGridV1: 0
JSON: 0
Moose: 0
constant: 0
perl: v5.10.0
strict: 0
warnings: 0
resources:
repository: https://github.com/MegaMaddin/akamai-open-diagnostictools-perl
version: 0.02
x_authority: cpan:PROBST
Makefile.PL view on Meta::CPAN
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.30"
},
"DISTNAME" => "Akamai-Open-DiagnosticTools",
"EXE_FILES" => [],
"LICENSE" => "perl",
"NAME" => "Akamai::Open::DiagnosticTools",
"PREREQ_PM" => {
"Akamai::Open::Client" => 0,
"Akamai::Open::Request::EdgeGridV1" => 0,
"JSON" => 0,
"Moose" => 0,
"constant" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"Akamai::Open::Client" => 0,
"Test::More" => 0,
"Test::Pod" => "1.41"
},
"VERSION" => "0.02",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"Akamai::Open::Client" => 0,
"Akamai::Open::Request::EdgeGridV1" => 0,
"JSON" => 0,
"Moose" => 0,
"Test::More" => 0,
"Test::Pod" => "1.41",
"constant" => 0,
"strict" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
[Git::NextVersion]
start_version = 0.01
version_regexp = Akamai-Open-DiagnosticTools-(.+)$
[Git::Tag]
tag_format = %N-%v
tag_message = %N-%v
[AutoPrereqs]
[MetaJSON]
[MetaResources]
repository.url = https://github.com/MegaMaddin/akamai-open-diagnostictools-perl
repository.web = https://github.com/MegaMaddin/akamai-open-diagnostictools-perl
repository.type = git
[Prereqs]
Akamai::Open::Client = 0
[Prereqs / TestRequires]
Akamai::Open::Client = 0
lib/Akamai/Open/DiagnosticTools.pm view on Meta::CPAN
BEGIN {
$Akamai::Open::DiagnosticTools::AUTHORITY = 'cpan:PROBST';
}
# ABSTRACT: The Akamai Open DiagnosticTools API Perl client
$Akamai::Open::DiagnosticTools::VERSION = '0.02';
use strict;
use warnings;
use v5.10;
use Moose;
use JSON;
#XXX create a useful scheme for REST methods
use constant {
TOOLS_URI => '/diagnostic-tools',
DIG_URI => '/v1/dig',
MTR_URI => '/v1/mtr',
LOC_URI => '/v1/locations'
};
extends 'Akamai::Open::Request::EdgeGridV1';
( run in 0.657 second using v1.01-cache-2.11-cpan-cdf2f3d4e48 )