convert to Dist::Zilla
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / Base / WithChecksum.pm
index ae7f097..2244edb 100644 (file)
@@ -6,9 +6,6 @@ with 'MooseX::Storage::Basic';
 use Digest       ();
 use Data::Dumper ();
 
-our $VERSION   = '0.18';
-our $AUTHORITY = 'cpan:STEVAN';
-
 our $DIGEST_MARKER = '__DIGEST__';
 
 around pack => sub {
@@ -85,10 +82,12 @@ sub _digest_object {
         }
     }
     else {
-        return Digest->new($d || "SHA1", @args);
+        return Digest->new($d || "SHA-1", @args);
     }
 }
 
+no Moose::Role;
+
 1;
 
 __END__