Acme-Sort-Bogosort
view release on metacpan or search on metacpan
0.05 2012-11-02
- All my modules comply with CPAN::Changes::Spec,
including Acme::*
0.04 2011-08-21
- Added 'parent' as a dependency, and switched to
using old-style version numbers (v5.10 => 5.010)
for backward compatibility.
0.03 2011-08-20
- Added Try::Tiny as a dependency.
0.02 2011-08-19
- Fixed type on the POD synopsis.
- Changed from ACME:: namespace to Acme::
0.01 2011-08-18
- First version, released on an unsuspecting world.
}
},
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "0"
}
},
"runtime" : {
"requires" : {
"Test::More" : "0",
"Try::Tiny" : "0",
"parent" : "0"
}
}
},
"release_status" : "stable",
"version" : "0.05"
}
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: Acme-Sort-Bogosort
no_index:
directory:
- t
- inc
requires:
Test::More: 0
Try::Tiny: 0
parent: 0
version: 0.05
Makefile.PL view on Meta::CPAN
WriteMakefile(
NAME => 'Acme::Sort::Bogosort',
AUTHOR => q{David Oswald <davido[at]cpan.org>},
VERSION_FROM => 'lib/Acme/Sort/Bogosort.pm',
ABSTRACT_FROM => 'lib/Acme/Sort/Bogosort.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Try::Tiny' => 0,
'Test::More' => 0,
'parent' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Acme-Sort-Bogosort-*' },
);
t/00-load.t view on Meta::CPAN
#!perl
use Test::More tests => 12;
use Try::Tiny;
use List::Util qw/shuffle/;
use 5.010;
BEGIN {
use_ok( 'Acme::Sort::Bogosort' ) || print "Bail out!\n";
}
diag( "Testing Acme::Sort::Bogosort $Acme::Sort::Bogosort::VERSION, Perl $], $^X" );
can_ok( 'Acme::Sort::Bogosort', qw/bogosort is_ordered compare/ );
( run in 0.572 second using v1.01-cache-2.11-cpan-05444aca049 )