summary refs log tree commit diff
path: root/lib/MooseX/Privacy.pm
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-07-18 15:13:21 +0200
committerfranck cuny <franck@lumberjaph.net>2010-07-18 15:13:21 +0200
commit6f2113319afa3986f37110f1418462de94ab5d77 (patch)
treea23ea2373f19ace7461e50456e054b25e69a3f5a /lib/MooseX/Privacy.pm
parentsome tidy (diff)
downloadmoosex-privacy-6f2113319afa3986f37110f1418462de94ab5d77.tar.gz
switch to dzil;remove useless POD;update Changes
Diffstat (limited to 'lib/MooseX/Privacy.pm')
-rw-r--r--lib/MooseX/Privacy.pm18
1 files changed, 2 insertions, 16 deletions
diff --git a/lib/MooseX/Privacy.pm b/lib/MooseX/Privacy.pm
index b41afc4..65270c8 100644
--- a/lib/MooseX/Privacy.pm
+++ b/lib/MooseX/Privacy.pm
@@ -1,5 +1,7 @@
 package MooseX::Privacy;
 
+# ABSTRACT: Provides the syntax to restrict/control visibility of your methods
+
 our $VERSION = '0.01';
 
 use Moose::Exporter;
@@ -32,10 +34,6 @@ sub init_meta {
 1;
 __END__
 
-=head1 NAME
-
-MooseX::Privacy - Provides the syntax to restrict/control visibility of your methods
-
 =head1 SYNOPSIS
 
     use MooseX::Privacy;
@@ -121,15 +119,3 @@ When the B<Private> traits is applied to an attribute, this attribute can only b
 
 When the B<Protected> traits is applied to an attribute, this attribute can only be read or set within the class AND any of his subclasses.
 
-=head1 AUTHOR
-
-franck cuny E<lt>franck@lumberjaph.netE<gt>
-
-=head1 SEE ALSO
-
-=head1 LICENSE
-
-This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
-=cut