summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README38
1 files changed, 18 insertions, 20 deletions
diff --git a/README b/README
index d095bb5..950e8c0 100644
--- a/README
+++ b/README
@@ -1,27 +1,25 @@
-This is Perl module MooseX::Privacy.
+NAME
+ MooseX::Privacy - Provides syntax to enable privacy on your methods
-INSTALLATION
+SYNOPSIS
+ use MooseX::Privacy;
-MooseX::Privacy installation is straightforward. If your CPAN shell is set up,
-you should just be able to do
+ private foo => sub {
+ return 23;
+ };
- % cpan MooseX::Privacy
+ protect bar => sub {
+ return 42;
+ };
-Download it, unpack it, then build it as per the usual:
+DESCRIPTION
+ MooseX::Privacy is
- % perl Makefile.PL
- % make && make test
+AUTHOR
+ franck cuny <franck.cuny@rtgi.fr>
-Then install it:
+SEE ALSO
+LICENSE
+ This library is free software; you can redistribute it and/or modify it
+ under the same terms as Perl itself.
- % make install
-
-DOCUMENTATION
-
-MooseX::Privacy documentation is available as in POD. So you can do:
-
- % perldoc MooseX::Privacy
-
-to read the documentation online with your favorite pager.
-
-franck cuny