[Bps-public-commit] RT-Extension-CommandByMail branch, master, updated. 0.10-23-g81d9f27
Thomas Sibley
trs at bestpractical.com
Mon Jul 22 14:10:07 EDT 2013
The branch, master has been updated
via 81d9f27739831850dadac3df9bf3386f2d117f1e (commit)
from 0ef609828ad9f0618220e486767d893b16aa1f02 (commit)
Summary of changes:
Changes | 5 +++++
META.yml | 2 +-
inc/Module/Install/RTx.pm | 15 ++++++++-------
lib/RT/Extension/CommandByMail.pm | 2 +-
4 files changed, 15 insertions(+), 9 deletions(-)
- Log -----------------------------------------------------------------
commit 81d9f27739831850dadac3df9bf3386f2d117f1e
Author: Thomas Sibley <trs at bestpractical.com>
Date: Mon Jul 22 11:09:12 2013 -0700
Releng 0.12
diff --git a/Changes b/Changes
index 44e12e7..7462f91 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
Revision history for RT-Extension-CommandByMail
+0.12 Mon Jul 22 11:07:44 PDT 2013
+* Handle setting TxnCFs to 0 (zero)
+* Regression fix for parsing bug in 0.11
+* Look for commands in headers too via $CommandByMailHeader option
+
0.11
* get rid of uninit warnings
* make tests create DBs rather then re-use production
diff --git a/META.yml b/META.yml
index 2e8a5ec..49794c2 100644
--- a/META.yml
+++ b/META.yml
@@ -27,4 +27,4 @@ requires:
perl: 5.8.3
resources:
license: http://dev.perl.org/licenses/
-version: 0.11
+version: 0.12
diff --git a/inc/Module/Install/RTx.pm b/inc/Module/Install/RTx.pm
index ce01018..c9fe996 100644
--- a/inc/Module/Install/RTx.pm
+++ b/inc/Module/Install/RTx.pm
@@ -8,13 +8,13 @@ no warnings 'once';
use Module::Install::Base;
use base 'Module::Install::Base';
-our $VERSION = '0.30';
+our $VERSION = '0.31';
use FindBin;
use File::Glob ();
use File::Basename ();
-my @DIRS = qw(etc lib html bin sbin po var);
+my @DIRS = qw(etc lib html static bin sbin po var);
my @INDEX_DIRS = qw(lib bin sbin);
sub RTx {
@@ -62,10 +62,11 @@ sub RTx {
unshift @INC, "$RT::LocalPath/lib" if $RT::LocalPath;
unshift @INC, $lib_path;
- $RT::LocalVarPath ||= $RT::VarPath;
- $RT::LocalPoPath ||= $RT::LocalLexiconPath;
- $RT::LocalHtmlPath ||= $RT::MasonComponentRoot;
- $RT::LocalLibPath ||= "$RT::LocalPath/lib";
+ $RT::LocalVarPath ||= $RT::VarPath;
+ $RT::LocalPoPath ||= $RT::LocalLexiconPath;
+ $RT::LocalHtmlPath ||= $RT::MasonComponentRoot;
+ $RT::LocalStaticPath ||= $RT::StaticPath;
+ $RT::LocalLibPath ||= "$RT::LocalPath/lib";
my $with_subdirs = $ENV{WITH_SUBDIRS};
@ARGV = grep { /WITH_SUBDIRS=(.*)/ ? ( ( $with_subdirs = $1 ), 0 ) : 1 }
@@ -208,4 +209,4 @@ sub requires_rt {
__END__
-#line 328
+#line 329
diff --git a/lib/RT/Extension/CommandByMail.pm b/lib/RT/Extension/CommandByMail.pm
index bc6eba7..27bbfae 100644
--- a/lib/RT/Extension/CommandByMail.pm
+++ b/lib/RT/Extension/CommandByMail.pm
@@ -1,7 +1,7 @@
use 5.008003;
package RT::Extension::CommandByMail;
-our $VERSION = '0.11';
+our $VERSION = '0.12';
1;
__END__
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list