[Bps-public-commit] RT-Extension-SLA branch, master, updated. 1.00-2-g3e0d9b9

Alex Vandiver alexmv at bestpractical.com
Tue Jul 1 15:41:32 EDT 2014


The branch, master has been updated
       via  3e0d9b973c61a29de873c76366e58639747083bb (commit)
      from  0cabe54c3604fbf3405d50d036f0d2ce56c3eb65 (commit)

Summary of changes:
 Changes                   |  3 +++
 META.yml                  |  7 ++++---
 Makefile.PL               |  2 +-
 README                    | 38 ++++++++++++++++++++++++--------------
 inc/Module/Install/RTx.pm |  6 ++++--
 lib/RT/Extension/SLA.pm   | 18 +++++++++++++++---
 6 files changed, 51 insertions(+), 23 deletions(-)

- Log -----------------------------------------------------------------
commit 3e0d9b973c61a29de873c76366e58639747083bb
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Tue Jul 1 15:40:28 2014 -0400

    Version 1.01 releng

diff --git a/Changes b/Changes
index 6e91c15..7a81fbc 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+1.01 2014-07-01
+ - Documentation and packaging updates; no code changes
+
 1.00 2014-06-19
  - Packaging updates; no code changes
 
diff --git a/META.yml b/META.yml
index 1f9e068..d5fb69f 100644
--- a/META.yml
+++ b/META.yml
@@ -1,7 +1,7 @@
 ---
 abstract: 'Service Level Agreements for RT'
 author:
-  - 'Ruslan Zakirov <ruz at bestpractical.com>'
+  - 'Best Practical Solutions, LLC <modules at bestpractical.com>'
 build_requires:
   ExtUtils::MakeMaker: 6.59
   Test::More: 0
@@ -25,7 +25,8 @@ requires:
   perl: 5.8.3
 resources:
   license: http://opensource.org/licenses/gpl-2.0.php
-version: '1.00'
-x_module_install_rtx_version: 0.34_03
+  repository: https://github.com/bestpractical/rt-extension-sla
+version: '1.01'
+x_module_install_rtx_version: 0.34_04
 x_requires_rt: 4.0.0
 x_rt_too_new: 4.4.0
diff --git a/Makefile.PL b/Makefile.PL
index 2c4f48f..3f53a66 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -2,8 +2,8 @@ use inc::Module::Install;
 
 abstract('Service Level Agreements for RT');
 RTx ('RT-Extension-SLA');
-readme_from('lib/RT/Extension/SLA.pm');
 license('gpl2');
+repository('https://github.com/bestpractical/rt-extension-sla');
 
 requires_rt '4.0.0';
 rt_too_new '4.4.0';
diff --git a/README b/README
index 38a3472..4d61fa6 100644
--- a/README
+++ b/README
@@ -5,12 +5,12 @@ DESCRIPTION
     RT extension to implement automated due dates using service levels.
 
 INSTALLATION
-    "perl Makefile.PL"
-    "make"
-    "make install"
+    perl Makefile.PL
+    make
+    make install
         May need root permissions
 
-    "make initdb"
+    make initdb
         Only run this the first time you install this module.
 
         If you run this twice, you may end up with duplicate data in your
@@ -28,7 +28,7 @@ INSTALLATION
 
             Set(@Plugins, qw(RT::Extension::SLA));
 
-        or add "RT::Extension::SLA" to your existing @Plugins line.
+        or add RT::Extension::SLA to your existing @Plugins line.
 
     Restart your webserver
 
@@ -45,9 +45,9 @@ UPGRADING
 
 CONFIGURATION
     Service level agreements of tickets is controlled by an SLA custom field
-    (CF). This field is created during "make initdb" step (above) and
-    applied globally. This CF MUST be of "select one value" type. Values of
-    the CF define the service levels.
+    (CF). This field is created during make initdb step (above) and applied
+    globally. This CF MUST be of select one value type. Values of the CF
+    define the service levels.
 
     It's possible to define different set of levels for different queues.
     You can create several CFs with the same name and different set of
@@ -351,16 +351,26 @@ DESIGN
     methods in 'RT::{Condition,Action}' RT's modules.
 
 NOTES
-    If you run "make initdb" more than once you will create multiple SLA
-    CFs. You can remove these via RT's "Configuration->Global" menu, (both
-    Custom Fields and Scrips).
+    If you run make initdb more than once you will create multiple SLA CFs.
+    You can remove these via RT's Configuration->Global menu, (both Custom
+    Fields and Scrips).
 
 AUTHOR
-    Ruslan Zakirov <ruz at bestpractical.com>
+    Best Practical Solutions, LLC <modules at bestpractical.com>
+
+BUGS
+    All bugs should be reported via email to
+
+        L<bug-RT-Extension-SLA at rt.cpan.org|mailto:bug-RT-Extension-SLA at rt.cpan.org>
+
+    or via the web at
+
+        L<rt.cpan.org|http://rt.cpan.org/Public/Dist/Display.html?Name=RT-Extension-SLA>.
 
 COPYRIGHT
     This extension is Copyright (C) 2007-2014 Best Practical Solutions, LLC.
 
-    It is freely redistributable under the terms of version 2 of the GNU
-    GPL.
+    This is free software, licensed under:
+
+      The GNU General Public License, Version 2, June 1991
 
diff --git a/inc/Module/Install/RTx.pm b/inc/Module/Install/RTx.pm
index 049e854..31db76d 100644
--- a/inc/Module/Install/RTx.pm
+++ b/inc/Module/Install/RTx.pm
@@ -8,7 +8,7 @@ no warnings 'once';
 
 use Module::Install::Base;
 use base 'Module::Install::Base';
-our $VERSION = '0.34_03';
+our $VERSION = '0.34_04';
 
 use FindBin;
 use File::Glob     ();
@@ -30,6 +30,8 @@ sub RTx {
         unless $self->version;
     $self->abstract("$name Extension")
         unless $self->abstract;
+    $self->readme_from( "lib/$fname.pm",
+                        { options => [ quotes => "none" ] } );
     $self->add_metadata("x_module_install_rtx_version", $VERSION );
 
     # Try to find RT.pm
@@ -248,4 +250,4 @@ sub _load_rt_handle {
 
 __END__
 
-#line 367
+#line 369
diff --git a/lib/RT/Extension/SLA.pm b/lib/RT/Extension/SLA.pm
index a38f28d..00d564f 100644
--- a/lib/RT/Extension/SLA.pm
+++ b/lib/RT/Extension/SLA.pm
@@ -4,7 +4,7 @@ use warnings;
 
 package RT::Extension::SLA;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 =head1 NAME
 
@@ -578,13 +578,25 @@ and Scrips).
 
 =head1 AUTHOR
 
-Ruslan Zakirov E<lt>ruz at bestpractical.comE<gt>
+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-SLA at rt.cpan.org|mailto:bug-RT-Extension-SLA at rt.cpan.org>
+
+or via the web at
+
+    L<rt.cpan.org|http://rt.cpan.org/Public/Dist/Display.html?Name=RT-Extension-SLA>.
 
 =head1 COPYRIGHT
 
 This extension is Copyright (C) 2007-2014 Best Practical Solutions, LLC.
 
-It is freely redistributable under the terms of version 2 of the GNU GPL.
+This is free software, licensed under:
+
+  The GNU General Public License, Version 2, June 1991
 
 =cut
 

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


More information about the Bps-public-commit mailing list