6ad0f278a0a939e482af756dc68d1726e1aae7e8
[gitmo/Moo.git] / lib / Moo / sification.pm
1 package Moo::sification;
2
3 use strictures 1;
4
5 sub Moo::HandleMoose::AuthorityHack::DESTROY {
6   require Moo::HandleMoose;
7   Moo::HandleMoose->import;
8 }
9
10 if ($INC{"Moose.pm"}) {
11   require Moo::HandleMoose;
12   Moo::HandleMoose->import;
13 } else {
14   $Moose::AUTHORITY = bless({}, 'Moo::HandleMoose::AuthorityHack');
15 }
16
17 1;