Subject: | Missing Version Information |
Hi,
1. missing $VERSION in
Catalyst::Plugin::Authentication::Credential::Password
causes for example:
Show quoted text
cpan> install Catalyst::Plugin::Authentication::Credential::Password
Catalyst::Plugin::Authentication::Credential::Password is up to date
(undef).
2. remove ugly hashbang in same file (Password.pm)
see attached patch
thanks,
regards,
Roland
Subject: | CPACP.patch |
--- Catalyst/Plugin/Authentication/Credential/Password.pm 2006-05-28 22:02:21.088034500 +0000
+++ patched/Catalyst/Plugin/Authentication/Credential/Password.pm 2006-05-28 22:04:47.449181500 +0000
@@ -1,10 +1,10 @@
-#!/usr/bin/perl
-
package Catalyst::Plugin::Authentication::Credential::Password;
use strict;
use warnings;
+our $VERSION = '0.08';
+
use Scalar::Util ();
use Catalyst::Exception ();
use Digest ();