[Bps-public-commit] dist-zilla-mintingprofile-rtx branch, master, updated. 0.07-8-g7a1a3e8

Kevin Falcone falcone at bestpractical.com
Fri Feb 7 23:10:24 EST 2014


The branch, master has been updated
       via  7a1a3e83abb7b3d6f86c03cc2822a14daec41d00 (commit)
       via  8bd3e9f4a8ba4e7c41b44ce25696acade1ae286c (commit)
       via  d45755ebb145f510baf662cd9605c44fdec46097 (commit)
       via  f915c8b1108083f78b4993cdb58eb89bd1389629 (commit)
       via  fce459a4e64018fdaca8bedb9772fb1ec178ea22 (commit)
       via  27ea88557bc97ca3b60b9e7a881fcbc5b39fea89 (commit)
       via  6702e6ff57cad56868f4fac96e934b1736f8d296 (commit)
       via  110b1eb061e3e5a9bf23a81dab126859d8318350 (commit)
      from  f1055a6df002469c2be793d6c87d0ea220cc60ad (commit)

Summary of changes:
 Changes                              | 31 +++++++++++++++++++------------
 META.yml                             |  2 +-
 README                               |  3 ++-
 inc/Module/Install/ReadmeFromPod.pm  |  2 +-
 lib/Dist/Zilla/MintingProfile/RTx.pm |  4 ++--
 profiles/db/Module.pm                | 17 ++++++++++++++++-
 profiles/default/Module.pm           | 17 ++++++++++++++++-
 7 files changed, 57 insertions(+), 19 deletions(-)

- Log -----------------------------------------------------------------
commit 6702e6ff57cad56868f4fac96e934b1736f8d296
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Fri Feb 7 23:02:40 2014 -0500

    New Plugin() vs @Plugins

diff --git a/profiles/db/Module.pm b/profiles/db/Module.pm
index b643743..1b65b33 100644
--- a/profiles/db/Module.pm
+++ b/profiles/db/Module.pm
@@ -32,7 +32,11 @@ in case changes need to be made to your database.
 
 =item Edit your F</opt/rt4/etc/RT_SiteConfig.pm>
 
-Add this line:
+If you are using RT 4.2 or greater, add this line:
+
+    Plugin('{{$name}}');
+
+For RT 3.8 and 4.0, add this line:
 
     Set(@Plugins, qw({{$name}}));
 
diff --git a/profiles/default/Module.pm b/profiles/default/Module.pm
index dab48f3..01d8e7b 100644
--- a/profiles/default/Module.pm
+++ b/profiles/default/Module.pm
@@ -22,7 +22,11 @@ May need root permissions
 
 =item Edit your F</opt/rt4/etc/RT_SiteConfig.pm>
 
-Add this line:
+If you are using RT 4.2 or greater, add this line:
+
+    Plugin('{{$name}}');
+
+For RT 3.8 and 4.0, add this line:
 
     Set(@Plugins, qw({{$name}}));
 

commit 27ea88557bc97ca3b60b9e7a881fcbc5b39fea89
Merge: 6702e6f 110b1eb
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Fri Feb 7 23:04:50 2014 -0500

    Merge branch 'add-description-and-version'


commit fce459a4e64018fdaca8bedb9772fb1ec178ea22
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Fri Feb 7 23:05:21 2014 -0500

    bump copyright

diff --git a/README b/README
index 60e56c0..0333bc0 100644
--- a/README
+++ b/README
@@ -20,7 +20,8 @@ AUTHOR
     Kevin Falcone <falcone at bestpractical.com>
 
 LICENCE AND COPYRIGHT
-    Copyright (c) 2011, Best Practical Solutions, LLC. All rights reserved.
+    Copyright (c) 2011-2014, Best Practical Solutions, LLC. All rights
+    reserved.
 
     This module is free software; you can redistribute it and/or modify it
     under the terms of version 2 of the GNU General Public License.
diff --git a/lib/Dist/Zilla/MintingProfile/RTx.pm b/lib/Dist/Zilla/MintingProfile/RTx.pm
index 7c6b71b..d386e94 100644
--- a/lib/Dist/Zilla/MintingProfile/RTx.pm
+++ b/lib/Dist/Zilla/MintingProfile/RTx.pm
@@ -33,7 +33,7 @@ Kevin Falcone <falcone at bestpractical.com>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright (c) 2011, Best Practical Solutions, LLC.  All rights reserved.
+Copyright (c) 2011-2014, Best Practical Solutions, LLC.  All rights reserved.
 
 This module is free software; you can redistribute it and/or
 modify it under the terms of version 2 of the GNU General Public License.

commit f915c8b1108083f78b4993cdb58eb89bd1389629
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Fri Feb 7 23:05:29 2014 -0500

    update build infrastructure

diff --git a/inc/Module/Install/ReadmeFromPod.pm b/inc/Module/Install/ReadmeFromPod.pm
index 6a80818..b5e03c3 100644
--- a/inc/Module/Install/ReadmeFromPod.pm
+++ b/inc/Module/Install/ReadmeFromPod.pm
@@ -7,7 +7,7 @@ use warnings;
 use base qw(Module::Install::Base);
 use vars qw($VERSION);
 
-$VERSION = '0.20';
+$VERSION = '0.22';
 
 sub readme_from {
   my $self = shift;

commit d45755ebb145f510baf662cd9605c44fdec46097
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Fri Feb 7 23:07:10 2014 -0500

    Call out useful things to set in your Makefile.PL

diff --git a/profiles/db/Module.pm b/profiles/db/Module.pm
index cb353db..7ff719a 100644
--- a/profiles/db/Module.pm
+++ b/profiles/db/Module.pm
@@ -17,6 +17,8 @@ does it solve?]
 
 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
diff --git a/profiles/default/Module.pm b/profiles/default/Module.pm
index aa52291..5e918a1 100644
--- a/profiles/default/Module.pm
+++ b/profiles/default/Module.pm
@@ -17,6 +17,8 @@ does it solve?]
 
 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

commit 8bd3e9f4a8ba4e7c41b44ce25696acade1ae286c
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Fri Feb 7 23:09:19 2014 -0500

    tidy and update Changes

diff --git a/Changes b/Changes
index e779ee9..51641e5 100644
--- a/Changes
+++ b/Changes
@@ -1,23 +1,30 @@
+0.08 2014-02-07
+ - Suggest Plugin() for 4.2 installs
+ - Encourage the author to write a SYNOPSIS and some VERSION information
+
 0.07
-    Wrap formatting codes around the installation steps
+ - Wrap formatting codes around the installation steps
 
 0.06
-    Stop ignoring README because it makes github prettier
-    Fix the mailto: bug link (and make it the preferred reporting method)
-    Ignore more test cruft
+ - Stop ignoring README because it makes github prettier
+ - Fix the mailto: bug link (and make it the preferred reporting method)
+ - Ignore more test cruft
+
 0.05
-    Ignore MYMETA files
-    We use GPLv2 by default because it is RT's license
-    Add a secondary profile that includes initdb instructions
+ - Ignore MYMETA files
+ - We use GPLv2 by default because it is RT's license
+ - Add a secondary profile that includes initdb instructions
+
 0.04
-    Anchor the dist-name tarball ignore so it doesn't catch Callbacks
-    Include links to rt.cpan.org
+ - Anchor the dist-name tarball ignore so it doesn't catch Callbacks
+ - Include links to rt.cpan.org
 
 0.03
-    PODify the Module->README step
+ - PODify the Module->README step
 
 0.02
-    Update dependencies
+ - Update dependencies
 
 0.01
-    Initial Release
+ - Initial Release
+

commit 7a1a3e83abb7b3d6f86c03cc2822a14daec41d00
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Fri Feb 7 23:09:40 2014 -0500

    update for 0.08

diff --git a/META.yml b/META.yml
index 6304b97..caf069f 100644
--- a/META.yml
+++ b/META.yml
@@ -24,4 +24,4 @@ requires:
   Module::Install::ReadmeFromPod: 0
 resources:
   license: http://opensource.org/licenses/gpl-license.php
-version: 0.07
+version: 0.08
diff --git a/lib/Dist/Zilla/MintingProfile/RTx.pm b/lib/Dist/Zilla/MintingProfile/RTx.pm
index d386e94..1c1bb70 100644
--- a/lib/Dist/Zilla/MintingProfile/RTx.pm
+++ b/lib/Dist/Zilla/MintingProfile/RTx.pm
@@ -6,7 +6,7 @@ use Moose;
 with 'Dist::Zilla::Role::MintingProfile::ShareDir';
  
 
-our $VERSION = '0.07';
+our $VERSION = '0.08';
 
 =head1 NAME
 

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



More information about the Bps-public-commit mailing list