From: Jesse Luehrs Date: Sun, 3 May 2009 00:44:53 +0000 (-0500) Subject: update other docs about Moose::Exporter to not use strict/warnings X-Git-Tag: 0.78~49 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9a953f4d520b517709ef2d07e8b4a77dbaaafa6f;hp=a4f8d79a0d61123b8fafcfeb24b865921bf60099;p=gitmo%2FMoose.git update other docs about Moose::Exporter to not use strict/warnings --- diff --git a/lib/Moose/Cookbook/Extending/Recipe2.pod b/lib/Moose/Cookbook/Extending/Recipe2.pod index 36f2e8c..324524c 100644 --- a/lib/Moose/Cookbook/Extending/Recipe2.pod +++ b/lib/Moose/Cookbook/Extending/Recipe2.pod @@ -9,9 +9,6 @@ Moose::Cookbook::Extending::Recipe2 - Providing a role for the base object class package MooseX::Debugging; - use strict; - use warnings; - use Moose (); use Moose::Exporter; use Moose::Util::MetaRole; diff --git a/lib/Moose/Cookbook/Extending/Recipe4.pod b/lib/Moose/Cookbook/Extending/Recipe4.pod index 58c61b5..2c7d39f 100644 --- a/lib/Moose/Cookbook/Extending/Recipe4.pod +++ b/lib/Moose/Cookbook/Extending/Recipe4.pod @@ -9,9 +9,6 @@ Moose::Cookbook::Extending::Recipe4 - Acting like Moose.pm and providing sugar M package MyApp::Mooseish; - use strict; - use warnings; - use Moose (); use Moose::Exporter; diff --git a/lib/Moose/Util/MetaRole.pm b/lib/Moose/Util/MetaRole.pm index 386bca1..76166b6 100644 --- a/lib/Moose/Util/MetaRole.pm +++ b/lib/Moose/Util/MetaRole.pm @@ -120,9 +120,6 @@ Moose::Util::MetaRole - Apply roles to any metaclass, as well as the object base package MyApp::Moose; - use strict; - use warnings; - use Moose (); use Moose::Exporter; use Moose::Util::MetaRole;