Acme-Sort-Bogosort

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Perl module Acme::Sort::Bogosort

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::

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

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

package Acme::Sort::Bogosort;

use 5.010;

use strict;
use warnings;

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

use List::Util qw/shuffle/;

our @EXPORT = qw/bogosort/;

our $VERSION = '0.05';





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