Object-Lazy
view release on metacpan or search on metacpan
- use Try::Tiny instead of eval
- a name for the builder code reference
0.11 Tue May 15 18:48:37 2012
- added lost dependency
0.10 Sat May 12 21:18:29 2012
- repaired Makefile.PL
0.09 Mon Nov 15 22:59:46 2010
- missing build dependency Test::Differences fixed
0.08 Sun Nov 14 07:57:05 2010
- methods DOES and VERSION implemented
0.07 Wed Sep 29 05:20:56 2010
- write back object on every build
see RT ticket 61506 - Kevin Ryde - can() coderef return
0.06 Tue Jun 02 22:15:00 2009
- bugfix build dependencies
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "Object-Lazy",
"prereqs" : {
"build" : {
"requires" : {
"Cwd" : "0",
"Params::Validate" : "0",
"Test::Differences" : "0.60",
"Test::Exception" : "0",
"Test::More" : "0",
"Test::NoWarnings" : "0"
}
},
"configure" : {
"requires" : {
"Module::Build" : "0.42"
}
},
---
abstract: 'Object::Lazy - create objects late from non-owned classes'
author:
- 'Steffen Winkler <steffenw at cpan.org>'
build_requires:
Cwd: '0'
Params::Validate: '0'
Test::Differences: '0.60'
Test::Exception: '0'
Test::More: '0'
Test::NoWarnings: '0'
configure_requires:
Module::Build: '0.42'
dynamic_config: 1
generated_by: 'Module::Build version 0.4218, CPAN::Meta::Converter version 2.150005'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Makefile.PL view on Meta::CPAN
# Note: this file was auto-generated by Module::Build::Compat version 0.4218
require 5.006;
use ExtUtils::MakeMaker;
WriteMakefile
(
'PREREQ_PM' => {
'Test::Differences' => '0.60',
'Try::Tiny' => 0,
'Carp' => 0,
'Params::Validate' => 0,
'Cwd' => 0,
'Test::Exception' => 0,
'Test::NoWarnings' => 0,
'Test::More' => 0
},
'PL_FILES' => {},
'EXE_FILES' => [],
t/15_test_examples.t view on Meta::CPAN
#!perl
use strict;
use warnings;
use Test::More;
use Test::Differences;
use Cwd qw(getcwd chdir);
use English qw(-no_match_vars $CHILD_ERROR);
$ENV{AUTHOR_TESTING} or plan(
skip_all => 'Set $ENV{AUTHOR_TESTING} to run this test.'
);
plan(tests => 6);
my @data = (
( run in 0.489 second using v1.01-cache-2.11-cpan-131fc08a04b )