Revision history for Perl extension MooseX-Singleton
-0.06
-
- - singleton objects were broken when made_immutable (Dave Rolsky)
+0.06 2008-03-05
+ - singleton objects were broken when made_immutable (Dave Rolsky)
0.05 2008-02-03
- - avoid re-BUILD-ing existing singleton objects
+ - avoid re-BUILD-ing existing singleton objects (rjbs)
0.04 2008-01-27
- - exception when ->new called with args and instance already init'd (rjbs)
- - added ->initialize method to remove any ambiguity with ->new (rjbs)
+ - exception when ->new called with args and instance already init'd (rjbs)
+ - added ->initialize method to remove any ambiguity with ->new (rjbs)
0.03 2007-12-16
- reimplementation as a metaclass (Sartak)
MooseX::Singleton - turn your Moose class into a singleton
VERSION
- Version 0.03, released 16 Dec 07
+ Version 0.06, released 05 Mar 08
SYNOPSIS
package MyApp;
SOME CODE STOLEN FROM
Anders Nor Berle <debolaz@gmail.com>
+AND PATCHES FROM
+ Ricardo SIGNES <rjbs@cpan.org>
+
+ Dave Rolsky <autarch@urth.org>
+
COPYRIGHT AND LICENSE
Copyright 2007 Shawn M Moore.
use MooseX::Singleton::Object;
use MooseX::Singleton::Meta::Class;
-our $VERSION = 0.05;
+our $VERSION = 0.06;
sub import {
my $caller = caller;
=head1 VERSION
-Version 0.04, released 03 Feb 08
+Version 0.06, released 05 Mar 08
=head1 SYNOPSIS
Ricardo SIGNES E<lt>rjbs@cpan.orgE<gt>
+Dave Rolsky E<lt>autarch@urth.orgE<gt>
+
=head1 COPYRIGHT AND LICENSE
-Copyright 2007 Shawn M Moore.
+Copyright 2007, 2008 Shawn M Moore.
This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.