make spelling tests pass
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / Format / Storable.pm
index 644d709..e5eb9af 100644 (file)
@@ -1,12 +1,8 @@
-
 package MooseX::Storage::Format::Storable;
 use Moose::Role;
 
 use Storable ();
 
-our $VERSION   = '0.18';
-our $AUTHORITY = 'cpan:STEVAN';
-
 requires 'pack';
 requires 'unpack';
 
@@ -20,6 +16,8 @@ sub freeze {
     Storable::nfreeze( $self->pack(@args) );
 }
 
+no Moose::Role;
+
 1;
 
 __END__
@@ -56,10 +54,14 @@ MooseX::Storage::Format::Storable - A Storable serialization role
 
 =head1 DESCRIPTION
 
+=for stopwords IPC
+
 This module will C<thaw> and C<freeze> Moose classes using Storable. It
 uses C<Storable::nfreeze> by default so that it can be easily used
 in IPC scenarios across machines or just locally.
 
+=for stopwords Storable's
+
 One important thing to note is that this module does not mix well
 with the IO modules. The structures that C<freeze> and C<thaw> deal with
 are Storable's memory representation, and (as far as I know) that