[Bps-public-commit] r20047 - in RT-Extension-ResetPassword: .
falcone at bestpractical.com
falcone at bestpractical.com
Wed Jun 24 14:19:42 EDT 2009
Author: falcone
Date: Wed Jun 24 14:19:41 2009
New Revision: 20047
Modified:
RT-Extension-ResetPassword/ (props changed)
RT-Extension-ResetPassword/META.yml
RT-Extension-ResetPassword/Makefile.PL
RT-Extension-ResetPassword/README
RT-Extension-ResetPassword/lib/RT/Extension/ResetPassword.pm
Log:
bump version to 0.03 for a CPAN release
document how to configure it on 3.8
Modified: RT-Extension-ResetPassword/META.yml
==============================================================================
--- RT-Extension-ResetPassword/META.yml (original)
+++ RT-Extension-ResetPassword/META.yml Wed Jun 24 14:19:41 2009
@@ -1,13 +1,14 @@
---
abstract: 'RT Extension-ResetPassword Extension'
-author: ~
+author:
+ - 'Jesse Vincent <jesse at bestpractical.com>'
build_requires:
ExtUtils::MakeMaker: 6.42
configure_requires:
ExtUtils::MakeMaker: 6.42
distribution_type: module
generated_by: 'Module::Install version 0.91'
-license: unknown
+license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
@@ -16,4 +17,6 @@
directory:
- html
- inc
-version: 0.02
+resources:
+ license: http://dev.perl.org/licenses/
+version: 0.03
Modified: RT-Extension-ResetPassword/Makefile.PL
==============================================================================
--- RT-Extension-ResetPassword/Makefile.PL (original)
+++ RT-Extension-ResetPassword/Makefile.PL Wed Jun 24 14:19:41 2009
@@ -1,3 +1,6 @@
use inc::Module::Install;
RTx('RT-Extension-ResetPassword');
+author ('Jesse Vincent <jesse at bestpractical.com>');
+license('perl');
+
&WriteAll;
Modified: RT-Extension-ResetPassword/README
==============================================================================
--- RT-Extension-ResetPassword/README (original)
+++ RT-Extension-ResetPassword/README Wed Jun 24 14:19:41 2009
@@ -5,17 +5,23 @@
reset their passwords by email. There isn't yet an option to only allow
staff users or non-staff users to reset their passwords.
-This extension should be compatible with RT 3.4 and RT 3.6.
+This extension should be compatible with RT 3.4 and later
To install this extension:
perl Makefile.PL
make install
-Copyright 2006 Best Practical Solutions, LLC.
+If you are running RT 3.8, you must add RT-Extension-ResetPassword
+to your @Plugins in your RT_SiteConfig
-This software is distributed under the same license as Perl 5.8.8.
+Set(@Plugins, qw(RT::Extension::ResetPassword Your::Other::Extensions));
-For commercial support, please contact sales at bestpractical.com
+Make sure you clear your mason cache before restarting apache
+rm -rf /opt/rt3/var/mason_data/obj/*
+apachectl restart
+Copyright 2006-2009 Best Practical Solutions, LLC.
+This software is distributed under the same license as Perl 5.8.8.
+For commercial support, please contact sales at bestpractical.com
Modified: RT-Extension-ResetPassword/lib/RT/Extension/ResetPassword.pm
==============================================================================
--- RT-Extension-ResetPassword/lib/RT/Extension/ResetPassword.pm (original)
+++ RT-Extension-ResetPassword/lib/RT/Extension/ResetPassword.pm Wed Jun 24 14:19:41 2009
@@ -1,5 +1,5 @@
package RT::Extension::ResetPassword;
-our $VERSION = '0.02';
+our $VERSION = '0.03';
1;
More information about the Bps-public-commit
mailing list