Acme-URM

 view release on metacpan or  search on metacpan

INSTALL  view on Meta::CPAN

Any extra modules required for use:
Data::Dumper	- output in debug mode

The minimum version of Perl required:
?

If only works on certain operating systems:
Tested undef Linux but must work on any platform.

Installation:
$ perl Makefile.PL
$ make

Makefile.PL  view on Meta::CPAN

use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
	'NAME'			=> 'Acme::URM',
	'VERSION_FROM'	=> 'lib/Acme/URM.pm',		# finds $VERSION
	'PREREQ_PM'		=> {
		'Data::Dumper'	=> 0,
	},
);

lib/Acme/URM.pm  view on Meta::CPAN

package Acme::URM;
use strict;
use Data::Dumper;

our $VERSION	= '0.02';

use constant	LAST		=> -1;
use constant	THIS		=> -2;
use constant	MAX_STEPS	=> -3;

my $DEBUG   = 0;
sub import {
    foreach (@_) {

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.609 second using v1.00-cache-2.02-grep-82fe00e-cpan-2c419f77a38b )