Checking in changes prior to tagging of version 0.39. Changelog diff is:
[gitmo/Mouse.git] / lib / Mouse / Meta / Method / Destructor.pm
index 28e260f..7c12dc8 100644 (file)
@@ -13,6 +13,7 @@ sub _generate_destructor{
     my $demolishall = '';
     for my $class ($metaclass->linearized_isa) {
         no strict 'refs';
+        no warnings 'once';
         if (*{$class . '::DEMOLISH'}{CODE}) {
             $demolishall .= "${class}::DEMOLISH(\$self);\n";
         }
@@ -47,3 +48,17 @@ sub _generate_destructor{
 
 1;
 __END__
+
+=head1 NAME
+
+Mouse::Meta::Method::Accessor - A Mouse method generator for destructors
+
+=head1 VERSION
+
+This document describes Mouse version 0.39
+
+=head1 SEE ALSO
+
+L<Moose::Meta::Method::Destructor>
+
+=cut