Skip Menu |

This queue is for tickets about the Catalyst-Plugin-Authentication CPAN distribution.

Report information
The Basics
Id: 19549
Status: resolved
Priority: 0/
Queue: Catalyst-Plugin-Authentication

People
Owner: Nobody in particular
Requestors: rmoriz [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.07
Fixed in: (no value)



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 ();
On Sun May 28 18:07:29 2006, RMORIZ wrote: Show quoted text
> 1. missing $VERSION in > Catalyst::Plugin::Authentication::Credential::Password > > causes for example: >
> cpan> install Catalyst::Plugin::Authentication::Credential::Password
> Catalyst::Plugin::Authentication::Credential::Password is up to date > (undef).
You shouldn't be relying on Credential::Password, rather the Authentication plugin itself ("install Catalyst::Plugin::Authentication" will install the Password credential module as it is part of the same dist) Show quoted text
> 2. remove ugly hashbang in same file (Password.pm)
I've removed all she-bangs in svn (rev 6885). Thanks, -Brian