[Bps-public-commit] RT-Extension-FeaturedTickets branch, master, created. a1fa2391d00b758225c35e7634d8cfed2f4dbe92

Craig Kaiser craig at bestpractical.com
Tue Mar 13 12:08:09 EDT 2018


The branch, master has been created
        at  a1fa2391d00b758225c35e7634d8cfed2f4dbe92 (commit)

- Log -----------------------------------------------------------------
commit a1fa2391d00b758225c35e7634d8cfed2f4dbe92
Author: craig Kaiser <craig at bestpractical.com>
Date:   Tue Mar 13 12:07:58 2018 -0400

    Skeleton

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..226215c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,14 @@
+blib*
+Makefile
+Makefile.old
+pm_to_blib*
+*.tar.gz
+.lwpcookies
+cover_db
+pod2htm*.tmp
+/RT-Extension-FeaturedTickets*
+*.bak
+*.swp
+/MYMETA.*
+/t/tmp
+/xt/tmp
diff --git a/Changes b/Changes
new file mode 100644
index 0000000..d346630
--- /dev/null
+++ b/Changes
@@ -0,0 +1,4 @@
+Revision history for RT-Extension-FeaturedTickets
+
+0.01 [Release Date]
+ - Initial version
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..0b8986e
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,11 @@
+use inc::Module::Install;
+
+RTx     'RT-Extension-FeaturedTickets';
+license 'gplv2';
+repository 'https://github.com/bestpractical/rt-extension-featuredtickets';
+
+requires_rt '4.4.0';
+rt_too_new '4.6.0';
+
+sign;
+WriteAll;
diff --git a/lib/RT/Extension/FeaturedTickets.pm b/lib/RT/Extension/FeaturedTickets.pm
new file mode 100644
index 0000000..8cb2659
--- /dev/null
+++ b/lib/RT/Extension/FeaturedTickets.pm
@@ -0,0 +1,78 @@
+use strict;
+use warnings;
+package RT::Extension::FeaturedTickets;
+
+our $VERSION = '0.01';
+
+=head1 NAME
+
+RT-Extension-FeaturedTickets - [One line description of module's purpose here]
+
+=head1 DESCRIPTION
+
+[Why would someone install this extension? What does it do? What problem
+does it solve?]
+
+=head1 RT VERSION
+
+Works with RT [What versions of RT is this known to work with?]
+
+[Make sure to use requires_rt and rt_too_new in Makefile.PL]
+
+=head1 INSTALLATION
+
+=over
+
+=item C<perl Makefile.PL>
+
+=item C<make>
+
+=item C<make install>
+
+May need root permissions
+
+=item Edit your F</opt/rt4/etc/RT_SiteConfig.pm>
+
+If you are using RT 4.2 or greater, add this line:
+
+    Plugin('RT::Extension::FeaturedTickets');
+
+For RT 4.0, add this line:
+
+    Set(@Plugins, qw(RT::Extension::FeaturedTickets));
+
+or add C<RT::Extension::FeaturedTickets> to your existing C<@Plugins> line.
+
+=item Clear your mason cache
+
+    rm -rf /opt/rt4/var/mason_data/obj
+
+=item Restart your webserver
+
+=back
+
+=head1 AUTHOR
+
+Best Practical Solutions, LLC E<lt>modules at bestpractical.comE<gt>
+
+=head1 BUGS
+
+All bugs should be reported via email to
+
+    L<bug-RT-Extension-FeaturedTickets at rt.cpan.org|mailto:bug-RT-Extension-FeaturedTickets at rt.cpan.org>
+
+or via the web at
+
+    L<rt.cpan.org|http://rt.cpan.org/Public/Dist/Display.html?Name=RT-Extension-FeaturedTickets>.
+
+=head1 LICENSE AND COPYRIGHT
+
+This software is Copyright (c) 2018 by Craig
+
+This is free software, licensed under:
+
+  The GNU General Public License, Version 2, June 1991
+
+=cut
+
+1;

-----------------------------------------------------------------------


More information about the Bps-public-commit mailing list