version 0.01
[gitmo/Moose-Policy.git] / lib / Moose / Policy / FollowPBP.pm
index 0ba906b..8fc7e3f 100644 (file)
@@ -33,4 +33,45 @@ __END__
 
 =pod
 
+=head1 NAME 
+
+Moose::Policy::FollowPBP - Follow the recomendations in Perl Best Practices
+
+=head1 SYNOPSIS
+
+  package Foo;
+  
+  use Moose::Policy 'Moose::Policy::FollowPBP';
+  use Moose;
+  
+  has 'bar' => (is => 'rw', default => 'Foo::bar');
+  has 'baz' => (is => 'ro', default => 'Foo::baz');
+  
+  # Foo now has (get, set)_bar methods as well as get_baz
+
+=head1 DESCRIPTION
+
+This meta-policy changes the behavior of Moose's default behavior in 
+regard to  accessors to follow the recomdnations found in Damian 
+Conway's book Perl Best Practices. 
+
+=head1 BUGS
+
+All complex software has bugs lurking in it, and this module is no 
+exception. If you find a bug please either email me, or add the bug
+to cpan-RT.
+
+=head1 AUTHOR
+
+Stevan Little E<lt>stevan@iinteractive.comE<gt>
+
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2006 by Infinity Interactive, Inc.
+
+L<http://www.iinteractive.com>
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
 =cut