App-CPRReporter

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Data::Dumper" : "0",
            "Getopt::Long" : "0",
            "Moose" : "0",
            "Pod::Usage" : "0",
            "Spreadsheet::XLSX" : "0",
            "Text::Fuzzy::PP" : "0",
            "Text::Iconv" : "0",
            "Text::ResusciAnneparser" : "0",
            "autodie" : "0",
            "lib" : "0",
            "namespace::autoclean" : "0",
            "perl" : "5.012",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Test::Exception" : "0",
            "Test::More" : "0",
            "Test::Warn" : "0"

META.yml  view on Meta::CPAN

  Data::Dumper: 0
  Getopt::Long: 0
  Moose: 0
  Pod::Usage: 0
  Spreadsheet::XLSX: 0
  Text::Fuzzy::PP: 0
  Text::Iconv: 0
  Text::ResusciAnneparser: 0
  autodie: 0
  lib: 0
  namespace::autoclean: 0
  perl: 5.012
  strict: 0
  warnings: 0
resources:
  bugtracker: https://github.com/hollie/app-cprreporter-perl/issues
  repository: git://github.com/hollie/app-cprreporter-perl.git
version: 0.03

Makefile.PL  view on Meta::CPAN

    "Data::Dumper" => 0,
    "Getopt::Long" => 0,
    "Moose" => 0,
    "Pod::Usage" => 0,
    "Spreadsheet::XLSX" => 0,
    "Text::Fuzzy::PP" => 0,
    "Text::Iconv" => 0,
    "Text::ResusciAnneparser" => 0,
    "autodie" => 0,
    "lib" => 0,
    "namespace::autoclean" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Test::Exception" => 0,
    "Test::More" => 0,
    "Test::Warn" => 0
  },
  "VERSION" => "0.03",
  "test" => {

Makefile.PL  view on Meta::CPAN

  "Pod::Usage" => 0,
  "Spreadsheet::XLSX" => 0,
  "Test::Exception" => 0,
  "Test::More" => 0,
  "Test::Warn" => 0,
  "Text::Fuzzy::PP" => 0,
  "Text::Iconv" => 0,
  "Text::ResusciAnneparser" => 0,
  "autodie" => 0,
  "lib" => 0,
  "namespace::autoclean" => 0,
  "strict" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

lib/App/CPRReporter.pm  view on Meta::CPAN

use strict;
use warnings;

package App::CPRReporter 0.02;
$App::CPRReporter::VERSION = '0.03';
use Moose;
use namespace::autoclean;
use 5.012;
use autodie;

use Carp qw/croak carp/;
use Text::ResusciAnneparser;
use Spreadsheet::XLSX;
use Text::Iconv;
use Data::Dumper;
use Text::Fuzzy::PP;



( run in 0.274 second using v1.01-cache-2.11-cpan-4d50c553e7e )