},
'autodie' => {
- 'DISTRIBUTION' => 'PJF/autodie-2.27.tar.gz',
+ 'DISTRIBUTION' => 'PJF/autodie-2.28.tar.gz',
'FILES' => q[cpan/autodie],
'EXCLUDED' => [
qr{benchmarks},
use constant MIN_IPC_SYS_SIMPLE_VER => 0.12;
-our $VERSION = '2.27'; # VERSION: Generated by DZP::OurPkg::Version
+our $VERSION = '2.28'; # VERSION: Generated by DZP::OurPkg::Version
our $Debug ||= 0;
':default' => [qw(:io :threads)],
- # Everything in v2.07 and brefore. This was :default less chmod and chown
+ # Everything in v2.07 and before. This was :default less chmod and chown
':v207' => [qw(:threads :dbm :socket read seek sysread
syswrite sysseek open close flock sysopen fcntl fileno
binmode ioctl truncate opendir closedir chdir link unlink
':2.25' => [qw(:v225)],
':2.26' => [qw(:default)],
':2.27' => [qw(:default)],
+ ':2.28' => [qw(:default)],
);
# ABSTRACT: Replace functions with ones that succeed or die with lexical scope
BEGIN {
- our $VERSION = '2.27'; # VERSION: Generated by DZP::OurPkg::Version
+ our $VERSION = '2.28'; # VERSION: Generated by DZP::OurPkg::Version
}
use constant ERROR_WRONG_FATAL => q{
use warnings;
# ABSTRACT: Wrapper class for calling subs at end of scope
-our $VERSION = '2.27'; # VERSION
+our $VERSION = '2.28'; # VERSION
# This code schedules the cleanup of subroutines at the end of
# scope. It's directly inspired by chocolateboy's excellent
use autodie::Scope::Guard;
# ABSTRACT: Hook stack for managing scopes via %^H
-our $VERSION = '2.27'; # VERSION
+our $VERSION = '2.28'; # VERSION
my $H_KEY_STEM = __PACKAGE__ . '/guard';
my $COUNTER = 0;
on_end_of_compile_scope
);
-our $VERSION = '2.27'; # VERSION: Generated by DZP::OurPkg:Version
+our $VERSION = '2.28'; # VERSION: Generated by DZP::OurPkg:Version
# ABSTRACT: Internal Utility subroutines for autodie and Fatal
use warnings;
use Carp qw(croak);
-our $VERSION = '2.27'; # VERSION: Generated by DZP::OurPkg:Version
+our $VERSION = '2.28'; # VERSION: Generated by DZP::OurPkg:Version
# ABSTRACT: Exceptions from autodying functions.
our $DEBUG = 0;
use parent 'autodie::exception';
use Carp qw(croak);
-our $VERSION = '2.27'; # VERSION: Generated by DZP::OurPkg:Version
+our $VERSION = '2.28'; # VERSION: Generated by DZP::OurPkg:Version
# ABSTRACT: Exceptions from autodying system().
use constant PERL58 => ( $] < 5.009 );
-our $VERSION = '2.27'; # VERSION: Generated by DZP::OurPkg:Version
+our $VERSION = '2.28'; # VERSION: Generated by DZP::OurPkg:Version
# ABSTRACT: Provide hints about user subroutines to autodie
use strict;
use warnings;
-our $VERSION = '2.27'; # VERSION
+our $VERSION = '2.28'; # VERSION
# This package exists purely so people can inherit from it,
# which isn't at all how roles are supposed to work, but it's
use Test::More;
BEGIN {
- eval 'use Import::Into';
- plan skip_all => 'Test needs Import::Into' if $@;
+ eval 'use Import::Into 1.002004';
+ plan skip_all => 'Test needs Import::Into >= 1.002004' if $@;
}
use FindBin;