App-Pocosi
view release on metacpan or search on metacpan
"requires" : {
"ExtUtils::MakeMaker" : "6.30"
}
},
"runtime" : {
"requires" : {
"Class::Load" : "0.06",
"Data::Dump" : 0,
"IO::WrapOutput" : "0.02",
"IRC::Utils" : "0.10",
"JSON::XS" : 0,
"Module::Pluggable" : 0,
"POE" : "1.310",
"POE::Component::Server::IRC" : "1.48",
"Proc::Daemon" : "0.02",
"Term::ANSIColor" : 0,
"Term::Cap" : "1.10",
"Term::ReadKey" : "2.21",
"YAML::XS" : 0,
"perl" : "5.008"
}
no_index:
directory:
- t
- utils
- example
requires:
Class::Load: 0.06
Data::Dump: 0
IO::WrapOutput: 0.02
IRC::Utils: 0.10
JSON::XS: 0
Module::Pluggable: 0
POE: 1.310
POE::Component::Server::IRC: 1.48
Proc::Daemon: 0.02
Term::ANSIColor: 0
Term::Cap: 1.10
Term::ReadKey: 2.21
YAML::XS: 0
perl: 5.008
resources:
Makefile.PL view on Meta::CPAN
'EXE_FILES' => [
'bin/pocosi'
],
'LICENSE' => 'perl',
'NAME' => 'App::Pocosi',
'PREREQ_PM' => {
'Class::Load' => '0.06',
'Data::Dump' => '0',
'IO::WrapOutput' => '0.02',
'IRC::Utils' => '0.10',
'JSON::XS' => '0',
'Module::Pluggable' => '0',
'POE' => '1.310',
'POE::Component::Server::IRC' => '1.48',
'Proc::Daemon' => '0.02',
'Term::ANSIColor' => '0',
'Term::Cap' => '1.10',
'Term::ReadKey' => '2.21',
'YAML::XS' => '0'
},
'VERSION' => '0.03',
if ($@) {
chomp $@;
die "Failed to read YAML data from $args{cfg_file}: $@\n"
}
if (ref $config ne 'HASH') {
die "YAML data in $args{cfg_file} should be a hash\n";
}
}
elsif ($args{cfg_file} =~ /\.json$/i) {
require JSON::XS;
JSON::XS->import('decode_json');
open my $fh, '<', $args{cfg_file} or die "Can't open $args{cfg_file}: $!\n";
my $json = do { local $/; <$fh> };
eval { $config = decode_json($json) };
if ($@) {
chomp $@;
die "Failed to read JSON data from $args{cfg_file}: $@\n"
}
if (ref $config ne 'HASH') {
github_user = hinrik
git_tag_message = CPAN release %v
no_AutoPrereq = 1
[Prereqs / Runtime]
perl = 5.008
Class::Load = 0.06
Data::Dump = 0
IRC::Utils = 0.10
IO::WrapOutput = 0.02
JSON::XS = 0
Module::Pluggable = 0
POE = 1.310
POE::Component::Server::IRC = 1.48
Proc::Daemon = 0.02
Term::ANSIColor = 0
Term::Cap = 1.10
Term::ReadKey = 2.21
YAML::XS = 0
[Prereqs / BuildRequires]
( run in 0.412 second using v1.01-cache-2.11-cpan-fd5d4e115d8 )