[libpackage-variant-perl] 08/23: yes, yes, the docs needed updating to strictures 2 too

Jonas Smedegaard dr at jones.dk
Tue Aug 4 13:25:44 UTC 2015


This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository libpackage-variant-perl.

commit 7104761cfa71a59cec2bb68ac1a8337f741f5d53
Author: Matt S Trout <mst at shadowcat.co.uk>
Date:   Sat Jul 25 17:19:20 2015 +0000

    yes, yes, the docs needed updating to strictures 2 too
---
 Changes                | 2 ++
 lib/Package/Variant.pm | 8 ++++----
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/Changes b/Changes
index ffb2c33..90c87b7 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for Package-Variant
 
+  - also switch the documentation to strictures 2 (slow clap for mst there)
+
 1.003000 - 2015-07-25
   - switch to strictures 2
   - add make_variant_package_name optional method
diff --git a/lib/Package/Variant.pm b/lib/Package/Variant.pm
index 966d5ad..e6bef72 100644
--- a/lib/Package/Variant.pm
+++ b/lib/Package/Variant.pm
@@ -139,7 +139,7 @@ Creation of anonymous variants:
 
   # declaring a variable Moo role
   package My::VariableRole::ObjectAttr;
-  use strictures 1;
+  use strictures 2;
   use Package::Variant
     # what modules to 'use'
     importing => ['Moo::Role'],
@@ -160,7 +160,7 @@ Creation of anonymous variants:
 
   # using the role
   package My::Class::WithObjectAttr;
-  use strictures 1;
+  use strictures 2;
   use Moo;
   use My::VariableRole::ObjectAttr;
 
@@ -174,7 +174,7 @@ And the same thing, only with named variants:
 
   # declaring a variable Moo role that can be named
   package My::VariableRole::ObjectAttrNamed;
-  use strictures 1;
+  use strictures 2;
   use Package::Variant importing => ['Moo::Role'],
     subs => [ qw(has around before after with) ];
   use Module::Runtime 'module_notional_filename'; # only if you need protection
@@ -201,7 +201,7 @@ And the same thing, only with named variants:
 
   # using the role
   package My::Class::WithObjectAttr;
-  use strictures 1;
+  use strictures 2;
   use Moo;
   use My::VariableRole::ObjectAttrNamed;
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libpackage-variant-perl.git



More information about the Pkg-perl-cvs-commits mailing list