Parse-ErrorString-Perl

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

        * fix bug caused by changes in perl 5.22

0.21    2014.09.10
        * Moved to GitHub

0.20    2013.10.05
        * Add back copyright and license information
          and POD headers (RT #89233 by Florian)

0.19    2013.08.06
        * Fix the missing Test::Differences dependency (AZAWAWI)
        * Reformatted Changes file (AZAWAWI)

0.18    2013.08.05
        * Fix the missing =head1 NAME (AZAWAWI)

0.17    2013.08.05
        * Emergency release to fix the Changes file (AZAWAWI)

0.16    2013.08.05
        * Convert to Module::Install (SZABGAB)

META.yml  view on Meta::CPAN

---
abstract: 'Parse error messages from the perl interpreter'
author:
  - 'Petar Shangov, <pshangov at yahoo.com>'
  - 'Gabor Szabo <http://szabgab.com/>'
  - 'Ahmad M. Zawawi <ahmad.zawawi@gmail.com>'
build_requires:
  ExtUtils::MakeMaker: 6.59
  Test::Differences: 0
  Test::More: 0.47
configure_requires:
  ExtUtils::MakeMaker: 6.59
distribution_type: module
dynamic_config: 1
generated_by: 'Module::Install version 1.16'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4

Makefile.PL  view on Meta::CPAN

author         'Ahmad M. Zawawi <ahmad.zawawi@gmail.com>';
all_from       'lib/Parse/ErrorString/Perl.pm';

requires       'Carp'              => '0';
requires       'Class::XSAccessor' => '0';
requires       'File::Basename'    => '0';
requires       'File::Spec'        => '0';
requires       'Pod::Find'         => '0';
requires       'Pod::POM'          => '0.27';

test_requires  'Test::Differences' => '0';
test_requires  'Test::More'        => '0.47';

no_index       'directory'         => qw{ t xt eg share inc};
install_script 'bin/check_perldiag';
homepage       'http://padre.perlide.org/';
bugtracker     'https://github.com/PadreIDE/Parse-ErrorString-Perl';
repository     'https://github.com/PadreIDE/Parse-ErrorString-Perl';

WriteAll;

t/04-perldiag.t  view on Meta::CPAN

#!/usr/bin/perl

use strict;
use warnings;

use Test::More tests => 4;
use Parse::ErrorString::Perl;
use Test::Differences;


# use strict;
# use warnings;
#
# $kaboom;

my $msg_compile;

if ( $] <  5.021004 ) {



( run in 0.362 second using v1.01-cache-2.11-cpan-131fc08a04b )