X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FSingleton.pm;h=6766c8798423a44ad32baa81053462eeb6bf219e;hb=494ee6d25ae57d5cd4042c12163b1fac1e9575db;hp=5b65d5dec1c53c8e66fadcc34278002078e73a1d;hpb=553b1b2b47f55ea6c5651d10fc79e14f9a1992a0;p=gitmo%2FMooseX-Singleton.git diff --git a/lib/MooseX/Singleton.pm b/lib/MooseX/Singleton.pm index 5b65d5d..6766c87 100644 --- a/lib/MooseX/Singleton.pm +++ b/lib/MooseX/Singleton.pm @@ -1,20 +1,42 @@ package MooseX::Singleton; -use Moose; + +use Moose 0.82 (); +use Moose::Exporter; use MooseX::Singleton::Object; use MooseX::Singleton::Meta::Class; -our $VERSION = 0.05; +our $VERSION = '0.19'; +$VERSION = eval $VERSION; + +Moose::Exporter->setup_import_methods( also => 'Moose' ); + +sub init_meta { + shift; + my %p = @_; -sub import { - my $caller = caller; + 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::init_meta($caller, 'MooseX::Singleton::Object', 'MooseX::Singleton::Meta::Class'); + Moose::Util::MetaRole::apply_base_class_roles( + for_class => $caller, + roles => + ['MooseX::Singleton::Role::Object'], + ); - Moose->import({into => $caller}); - strict->import; - warnings->import; + return $caller->meta(); } + 1; __END__ @@ -25,10 +47,6 @@ __END__ MooseX::Singleton - turn your Moose class into a singleton -=head1 VERSION - -Version 0.04, released 03 Feb 08 - =head1 SYNOPSIS package MyApp; @@ -56,11 +74,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 @@ -82,10 +104,12 @@ All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. -=head1 AUTHOR +=head1 AUTHORS Shawn M Moore Esartak@gmail.comE +Dave Rolsky Eautarch@urth.orgE + =head1 SOME CODE STOLEN FROM Anders Nor Berle Edebolaz@gmail.comE @@ -96,7 +120,7 @@ Ricardo SIGNES Erjbs@cpan.orgE =head1 COPYRIGHT AND LICENSE -Copyright 2007 Shawn M Moore. +Copyright 2007, 2008 Infinity Interactive This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.