Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Path-Router CPAN distribution.

Report information
The Basics
Id: 37693
Status: resolved
Priority: 0/
Queue: Path-Router

People
Owner: stevan.little [...] gmail.com
Requestors: SAPER [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.02
Fixed in: (no value)



Subject: [PATCH] Wrong module name
Hello, When trying to install Path::Router, I saw this error: t/000_load........................ # Failed test 'use Path::Router::Shell;' # at t/000_load.t line 11. # Tried to use 'Path::Router::Shell'. # Error: Can't locate Term/Readline.pm in @INC Of course, the correct name is Term::ReadLine, with a capital "L": See attached patch to fix this in the module and in Makefile.PL. Regards -- Close the world, txEn eht nepO.
Subject: Path-Router-0.02-module-name.diff
--- lib/Path/Router/Shell.pm.orig 2008-07-13 17:25:44.000000000 +0200 +++ lib/Path/Router/Shell.pm 2008-07-15 15:18:42.999369717 +0200 @@ -1,7 +1,7 @@ package Path::Router::Shell; use Moose; -use Term::Readline; +use Term::ReadLine; use Data::Dumper; our $VERSION = '0.02'; --- Makefile.PL.orig 2008-07-15 15:19:56.877480615 +0200 +++ Makefile.PL 2008-07-15 15:20:04.540247427 +0200 @@ -12,7 +12,7 @@ feature 'Path::Router::Shell', -default => 1, - 'Term::Readline' => '0'; + 'Term::ReadLine' => '0'; # things the tests need build_requires 'Test::More' => '0.62';
Fixed in the latest release, just uploaded to CPAN
Fixed in the latest release, just uploaded to CPAN