Acme-Sort-Bozo

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Acme-Sort-Bozo

0.05 2012-11-02
 - "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

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

  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

    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-*' },
);

lib/Acme/Sort/Bozo.pm  view on Meta::CPAN

package Acme::Sort::Bozo;

use 5.010;

use strict;
use warnings;

use parent qw/Exporter/;
use Carp 'croak';

use List::Util qw/shuffle/;

our @EXPORT = qw/bozo/;

our $VERSION = '0.05';





( run in 0.569 second using v1.01-cache-2.11-cpan-4d50c553e7e )