Algorithm-TSort

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Perl extension Algorithm::TSort.

0.05  2016-06-29  MSK
	- Fix documentaion thanks to SREZIC
	- Portability issues 
	- fileformat -> unix

0.04  2012-01-21  MSK
	- Fix minor errors.

0.02  2012-10-12  MSK
	- rewrite Makefile.PL for LICENCE info.

0.01  2010-09-21  MSK
		- original version; created by h2xs 1.23 with options
		-AXO -n Algorithm::TSort

Makefile.PL  view on Meta::CPAN

# vim: ft=perl sts=4 ts=8 sw=4 et ff=unix
use strict;
use ExtUtils::MakeMaker;
use constant MIN_PERL_VERSION => 5.007003;

if ( $] < MIN_PERL_VERSION ) {
    print "Perl $] not supported by this module\n";
    exit(0);
}

WriteMakefile(

lib/Algorithm/TSort.pm  view on Meta::CPAN

# vim: ft=perl sts=4 ts=8 sw=4 et ff=unix
package Algorithm::TSort;
use 5.007003;
use strict;
use warnings;
require Exporter;
our @ISA = qw(Exporter);

# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.

t/00-Algorithm-TSort.t  view on Meta::CPAN

# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl Algorithm-TSort.t'

#########################
# vim: ft=perl ts=8 sw=4 sts=4 et ff=unix
# change 'tests => 1' to 'tests => last_test_to_print';

use Test::More tests => 1;
BEGIN { use_ok('Algorithm::TSort') };

#########################

# Insert your test code below, the Test::More module is use()ed here so read
# its man page ( perldoc Test::More ) for help writing this test script.

t/01-tsort.t  view on Meta::CPAN

#!/usr/bin/perl 
# vim: ft=perl ts=8 sw=4 sts=4 et ff=unix
#===============================================================================
#
#         FILE:  run.pl
#
#        USAGE:  ./run.pl  
#
#  DESCRIPTION:  
#
#      OPTIONS:  ---
# REQUIREMENTS:  ---



( run in 1.283 second using v1.01-cache-2.11-cpan-df04353d9ac )