results

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

                                          web  => "https://github.com/tobyink/p5-results",
                                        },
                        x_identifier => "http://purl.org/NET/cpan-uri/dist/results/project",
                      },
  "version"        => 0.006,
};

my %dynamic_config;
do {

	if ( $] ge 5.011002 and $] lt 5.021007 ) {
		$meta->{prereqs}{runtime}{recommends}{'Lexical::Var'} = '0';
	}
	elsif ( $] ge 5.018000 and $] lt 5.037002 ) {
		$meta->{prereqs}{runtime}{recommends}{'Alt::Lexical::Var::ButSupportModernPerl'} = '0.001';
	}

	if ( $] lt 5.034 ) {
		$meta->{prereqs}{runtime}{requires}{'Syntax::Keyword::Try'} = '0';
	}

};

my %WriteMakefileArgs = (
	ABSTRACT   => $meta->{abstract},
	AUTHOR     => ($EUMM >= 6.5702 ? $meta->{author} : $meta->{author}[0]),
	DISTNAME   => $meta->{name},
	VERSION    => $meta->{version},

lib/results/wrap.pm  view on Meta::CPAN

use warnings;

use results ();

package results::wrap;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION   = '0.006';

BEGIN {
	if ( $] ge '5.034' ) {
		require experimental;
		'experimental'->import( 'try' );
	}
	else {
		require Syntax::Keyword::Try;
		'Syntax::Keyword::Try'->import;
	}
};

sub AUTOLOAD {



( run in 0.540 second using v1.01-cache-2.11-cpan-cc502c75498 )