X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FStorage.pm;h=904395bea61ff2c61b1027acf88638248943bbfd;hb=81a523ba27fe312e8d52f275283a892542f79f68;hp=1aa467437db379cc93748103de4b484f0187463a;hpb=61fb1aaaf5a1cc17e1ae52779e36373aa0bbd70a;p=gitmo%2FMooseX-Storage.git diff --git a/lib/MooseX/Storage.pm b/lib/MooseX/Storage.pm index 1aa4674..904395b 100644 --- a/lib/MooseX/Storage.pm +++ b/lib/MooseX/Storage.pm @@ -5,7 +5,7 @@ use Moose qw(confess); use MooseX::Storage::Meta::Attribute::DoNotSerialize; use String::RewritePrefix (); -our $VERSION = '0.26'; +our $VERSION = '0.33'; our $AUTHORITY = 'cpan:STEVAN'; sub import { @@ -187,7 +187,7 @@ class name and each instance attribute is stored. Very simple. This level is not optional, it is the bare minumum that MooseX::Storage provides and all other levels build on top of this. -See L for the fundamental implementation and +See L for the fundamental implementation and options to C and C =item B @@ -206,7 +206,7 @@ The third (io) level is C and C. In this level we are reading and writing data to file/network/database/etc. This level is also optional, in most cases it does require a C role -to also be used, the expection being the C role. +to also be used, the exception being the C role. =back @@ -272,7 +272,7 @@ over anyway. =head1 CAVEAT -This is B a persistence framework, changes to your object after +This is B a persistence framework; changes to your object after you load or store it will not be reflected in the stored class. =head1 EXPORTS @@ -281,7 +281,7 @@ you load or store it will not be reflected in the stored class. =item B -This module will export the C method will can be used to +This module will export the C method and can be used to load a specific set of MooseX::Storage roles to implement a specific combination of features. It is meant to make things easier, but it is by no means the only way. You can still compose your roles by