Acme-Sort-Bozo

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

 - "Changes" is CPAN::Changes::Spec compliant.

0.04 2011-08-21
 - Added 'parent' to Makefile.PL dependencies.
 - Reverted to old style version numbering in dependencies:
   5.010 instead of v5.10.
 - Fixed version number in POD.
 - Moved remainder of tests out of TODO status.

0.03 2011-08-20
 - Added Try::Tiny dependency.

0.02 2011-08-19
 - Skipped - bring version number to coincide with sister
   module, Acme::Sort::Bogosort.

0.01 2011-08-18
  - First version, released on an unsuspecting world.

META.json  view on Meta::CPAN

         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "Test::More" : "0",
            "Try::Tiny" : "0",
            "parent" : "0"
         }
      }
   },
   "release_status" : "stable",
   "version" : "0.05"
}

META.yml  view on Meta::CPAN

meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: Acme-Sort-Bozo
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::Bozo',
    AUTHOR              => q{David Oswald <davido[at]cpan.org>},
    VERSION_FROM        => 'lib/Acme/Sort/Bozo.pm',
    ABSTRACT_FROM       => 'lib/Acme/Sort/Bozo.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-Bozo-*' },
);

t/00-load.t  view on Meta::CPAN

#!perl

use Test::More tests => 13;
use Try::Tiny;
use List::Util qw/shuffle/;
use 5.010;

BEGIN {
    use_ok( 'Acme::Sort::Bozo' ) || print "Bail out!\n";
}

diag( "Testing Acme::Sort::Bozo $Acme::Sort::Bozo::VERSION, Perl $], $^X" );

can_ok( 'Acme::Sort::Bozo', qw/bozo is_ordered compare swap/ );



( run in 0.384 second using v1.01-cache-2.11-cpan-05444aca049 )