From e1833069d86f0e670e7a4be1cd04a5daa97b2d92 Mon Sep 17 00:00:00 2001 From: Emmanuel Lacour Date: Tue, 16 Sep 2008 13:23:00 +0000 Subject: [PATCH] Add missing required lib and fix doc. --- Makefile.PL | 2 +- README | 5 ++- lib/RT/Extension/WatchedQueues.pm | 81 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 86 insertions(+), 2 deletions(-) create mode 100644 lib/RT/Extension/WatchedQueues.pm diff --git a/Makefile.PL b/Makefile.PL index 1a0f162..0332de6 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -4,7 +4,7 @@ RTx('RT-Extension-WatchedQueues'); license('perl'); author('Emmanuel Lacour '); version('0.01'); -abstract('List queues the user is a watcher of'); +abstract_from('lib/RT/Extension/WatchedQueues.pm'); &WriteAll; diff --git a/README b/README index 5545754..356a374 100644 --- a/README +++ b/README @@ -14,7 +14,10 @@ To install this module, run the following commands: SUPPORT AND DOCUMENTATION -This file is the main documentation. +You can find documentation for this module with the perldoc command. + + perldoc RT::Extension::WatchedQueues + You can also look for information at: diff --git a/lib/RT/Extension/WatchedQueues.pm b/lib/RT/Extension/WatchedQueues.pm new file mode 100644 index 0000000..7cfb831 --- /dev/null +++ b/lib/RT/Extension/WatchedQueues.pm @@ -0,0 +1,81 @@ +package RT::Extension::WatchedQueues; + +use warnings; +use strict; + +=head1 NAME + +RT::Extension::WatchedQueues - List queues the user is a watcher of + +=head1 VERSION + +Version 0.01 + +=cut + +our $VERSION = '0.01'; + + +=head1 SYNOPSIS + +This RT Extension allow to display the list of queues the user is watcher, in +the user configuration tab. + +=head1 AUTHOR + +Emmanuel Lacour, C<< >> + +=head1 BUGS + +Please report any bugs or feature requests to C, or through +the web interface at L. I will be notified, and then you'll +automatically be notified of progress on your bug as I make changes. + + + + +=head1 SUPPORT + +You can find documentation for this module with the perldoc command. + + perldoc RT::Extension::WatchedQueues + + +You can also look for information at: + +=over 4 + +=item * RT: CPAN's request tracker + +L + +=item * AnnoCPAN: Annotated CPAN documentation + +L + +=item * CPAN Ratings + +L + +=item * Search CPAN + +L + +=back + + +=head1 ACKNOWLEDGEMENTS + + +=head1 COPYRIGHT & LICENSE + +Copyright 2008 Emmanuel Lacour, all rights reserved. + +This program is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. + +Request Tracker (RT) is Copyright Best Practical Solutions, LLC. + +=cut + +1; # End of RT::Extension::WatchedQueues -- 2.11.0