Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Module-Starter CPAN distribution.

Report information
The Basics
Id: 34289
Status: open
Priority: 0/
Queue: Module-Starter

People
Owner: Nobody in particular
Requestors: jaldhar [...] braincells.com
Cc:
AdminCc:

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



Subject: Some guts functions in ::Plugin::Template do not take options
...and they really should for consistencies sake and for subclassing. Here is a patch.
Subject: Module-Starter.diff
--- /usr/share/perl5/Module/Starter/Plugin/Template.pm 2007-11-09 18:35:20.000000000 -0500 +++ /usr/share/perl5/Module/Starter/Plugin/Template.pm.new 2008-03-19 19:27:36.000000000 -0400 @@ -170,9 +170,10 @@ sub Changes_guts { my $self = shift; + my %options; my $template = $self->{templates}{'Changes'}; - $self->render($template); + $self->render($template, \%options); } =item README_guts @@ -226,9 +227,10 @@ sub cvsignore_guts { my $self = shift; + my %options; my $template = $self->{templates}{cvsignore}; - $self->render($template); + $self->render($template, \%options); } =back
This issue has been copied to: https://github.com/xsawyerx/module-starter/issues/27. Please take all future correspondence there. This ticket will remain open but please do not reply here. This ticket will be closed when the github issue is dealt with. On Thu Mar 20 14:07:00 2008, JALDHAR wrote: Show quoted text
> ...and they really should for consistencies sake and for subclassing. > Here is a patch.