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=1ba6342edbacd397852789cadb94572cfd672c50;hp=5d16bdd821b7c21c0c46b6622450da7db93068d3;hb=7ddec692a68ee486c38ad7a6d1629059ff807746;hpb=b375b147ae0615bfe819dad1b2233ebf3fd90fc3 diff --git a/lib/MooseX/Singleton.pm b/lib/MooseX/Singleton.pm index 5d16bdd..1ba6342 100644 --- a/lib/MooseX/Singleton.pm +++ b/lib/MooseX/Singleton.pm @@ -1,18 +1,22 @@ package MooseX::Singleton; -use Moose; + +use Moose 0.74 (); +use Moose::Exporter; use MooseX::Singleton::Object; use MooseX::Singleton::Meta::Class; -our $VERSION = 0.03; - -sub import { - my $caller = caller; +our $VERSION = '0.17'; +$VERSION = eval $VERSION; - Moose::init_meta($caller, 'MooseX::Singleton::Object', 'MooseX::Singleton::Meta::Class'); +Moose::Exporter->setup_import_methods( also => 'Moose' ); - Moose->import({into => $caller}); - strict->import; - warnings->import; +sub init_meta { + shift; + Moose->init_meta( + @_, + base_class => 'MooseX::Singleton::Object', + metaclass => 'MooseX::Singleton::Meta::Class', + ); } 1; @@ -27,7 +31,7 @@ MooseX::Singleton - turn your Moose class into a singleton =head1 VERSION -Version 0.03, released 16 Dec 07 +Version 0.16, released 24 May 08 =head1 SYNOPSIS @@ -56,11 +60,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,17 +90,23 @@ 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 +=head1 AND PATCHES FROM + +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.