X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Singleton.git;a=blobdiff_plain;f=lib%2FMooseX%2FSingleton.pm;h=3401c7e1a10cc85cb0b411ecb4be0a67c951bca3;hp=291569733fcd955a9c5a5491924fb0ffdc29ce52;hb=8eec3c69ee4aa161601b0255c3b32cd6d9cc6998;hpb=0cd38a85e3f9a77914e846ad84e290b22b501b5a diff --git a/lib/MooseX/Singleton.pm b/lib/MooseX/Singleton.pm index 2915697..3401c7e 100644 --- a/lib/MooseX/Singleton.pm +++ b/lib/MooseX/Singleton.pm @@ -1,24 +1,42 @@ package MooseX::Singleton; -use Moose 0.73_01 (); +use Moose 0.89_02 (); use Moose::Exporter; use MooseX::Singleton::Object; use MooseX::Singleton::Meta::Class; -our $VERSION = '0.14'; +our $VERSION = '0.19'; $VERSION = eval $VERSION; Moose::Exporter->setup_import_methods( also => 'Moose' ); sub init_meta { shift; - Moose->init_meta( - @_, - base_class => 'MooseX::Singleton::Object', - metaclass => 'MooseX::Singleton::Meta::Class', + my %p = @_; + + Moose->init_meta(%p); + + my $caller = $p{for_class}; + + Moose::Util::MetaRole::apply_metaclass_roles( + for_class => $caller, + metaclass_roles => ['MooseX::Singleton::Role::Meta::Class'], + instance_metaclass_roles => + ['MooseX::Singleton::Role::Meta::Instance'], + constructor_class_roles => + ['MooseX::Singleton::Role::Meta::Method::Constructor'], + ); + + Moose::Util::MetaRole::apply_base_class_roles( + for_class => $caller, + roles => + ['MooseX::Singleton::Role::Object'], ); + + return $caller->meta(); } + 1; __END__ @@ -31,7 +49,7 @@ MooseX::Singleton - turn your Moose class into a singleton =head1 VERSION -Version 0.08, released 24 May 08 +Version 0.18, released 24 May 08 =head1 SYNOPSIS @@ -60,11 +78,15 @@ All you should need to do to transform your class is to change C to C. This module uses a new class metaclass and instance metaclass, so if you're doing metamagic you may not be able to use this. -C gives your class an C method that can be used to get a handle on the singleton. It's actually just an alias for C. +C gives your class an C method that can be used to +get a handle on the singleton. It's actually just an alias for C. Alternatively, C<< YourPackage->method >> should just work. This includes accessors. +If you need to reset your class's singleton object for some reason (e.g. +tests), you can call C<< YourPackage->_clear_instance >>. + =head1 TODO =over