App-Pocosi

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         "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"
         }

META.yml  view on Meta::CPAN

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',

bin/pocosi  view on Meta::CPAN


    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') {

dist.ini  view on Meta::CPAN

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 )