From: Dave Rolsky Date: Thu, 11 Dec 2008 16:29:55 +0000 (+0000) Subject: Move recommendations bit to its own BestPractices.pod X-Git-Tag: 0.66~27^2~37 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=34ae31e16cacd55eec6952331eb654c42c2f82dd;p=gitmo%2FMoose.git Move recommendations bit to its own BestPractices.pod --- diff --git a/lib/Moose/Manual/Classes.pod b/lib/Moose/Manual/Classes.pod index 35af4cf..a8ce70c 100644 --- a/lib/Moose/Manual/Classes.pod +++ b/lib/Moose/Manual/Classes.pod @@ -105,25 +105,6 @@ well. To make your class immutable you simply call C on your class's metaclass object. -=head1 RECOMMENDATIONS - -We recommend that you end your Moose class definitions by removing the -Moose sugar and making your class immutable. - - package Person; - - use Moose; - - # extends, roles, attributes, etc. - - # methods - - no Moose; - - __PACKAGE__->meta->make_immutable; - - 1; - =head1 AUTHOR Dave Rolsky Eautarch@urth.orgE