Akamai-PropertyFetcher
view release on metacpan or search on metacpan
Akamai-PropertyFetcher-0.01/META.json
Akamai-PropertyFetcher-0.01/META.yml
lib/Akamai/PropertyFetcher.pm
Makefile.PL
MANIFEST This list of files
README
t/00_load.t
META.yml Module YAML meta-data (added by MakeMaker)
META.json Module JSON meta-data (added by MakeMaker)
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "0"
}
},
"runtime" : {
"requires" : {
"Akamai::Edgegrid" : "0",
"File::Path" : "0",
"File::Spec" : "0",
"JSON" : "0",
"Parallel::ForkManager" : "0"
}
}
},
"release_status" : "stable",
"version" : "0.01",
"x_serialization_backend" : "JSON::PP version 4.07"
}
version: '1.4'
name: Akamai-PropertyFetcher
no_index:
directory:
- t
- inc
requires:
Akamai::Edgegrid: '0'
File::Path: '0'
File::Spec: '0'
JSON: '0'
Parallel::ForkManager: '0'
version: '0.01'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Akamai::PropertyFetcher',
VERSION_FROM => 'lib/Akamai/PropertyFetcher.pm',
PREREQ_PM => {
'Akamai::Edgegrid' => 0,
'JSON' => 0,
'File::Spec' => 0,
'File::Path' => 0,
'Parallel::ForkManager' => 0,
},
AUTHOR => 'Kawamura Shingo <pannakoota@gmail.com>',
ABSTRACT => 'Akamaiããããã£ã®ã¢ã¯ãã£ããã¼ã¸ã§ã³æ
å ±ãåå¾ããã¢ã¸ã¥ã¼ã«',
);
lib/Akamai/PropertyFetcher.pm view on Meta::CPAN
package Akamai::PropertyFetcher;
use strict;
use warnings;
use Akamai::Edgegrid;
use JSON;
use File::Spec;
use File::Path 'make_path';
use Parallel::ForkManager;
use Carp;
our $VERSION = '0.01';
sub new {
my ($class, %args) = @_;
my $self = bless {}, $class;
( run in 3.587 seconds using v1.01-cache-2.11-cpan-140bd7fdf52 )