Revision history for Perl extension Moose-Policy
-0.03
+0.03 Sat. April 14th, 2007
- changing it to use the Class::MOP::is_class_loaded
- instead.
+ and Class::MOP::load_class instead.
+ - fixed the metaclass loading to work with newer
+ versions of Class::MOP
0.02 Sun. Nov. 5, 2006
- We removed UNIVERSAL::require in Moose recently, and
-Moose::Policy version 0.02
+Moose::Policy version 0.03
===========================
See the individual module documentation for more information
This module requires these other modules and libraries:
- Carp
- Scalar::Util
Moose
COPYRIGHT AND LICENCE
-Copyright (C) 2006 Infinity Interactive, Inc.
+Copyright (C) 2006-2007 Infinity Interactive, Inc.
http://www.iinteractive.com
package Moose::Policy;
+use Moose 'confess', 'blessed';
-use strict;
-use warnings;
-
-our $VERSION = '0.03';
-
-use Moose ();
-use Carp 'confess';
-use Scalar::Util 'blessed';
+our $VERSION = '0.03';
+our $AUTHORITY = 'cpan:STEVAN';
sub import {
shift;
unless (Class::MOP::is_class_loaded($policy)) {
# otherwise require it ...
- my $file = $policy . '.pm';
- $file =~ s{::}{/}g;
- eval { CORE::require($file) };
- confess "Could not load policy module " .
- "'$policy' because : $UNIVERSAL::require::ERROR"
+ eval { Class::MOP::load_class($policy) };
+ confess "Could not load policy module '$policy' because : $@"
if $@;
}
my %options;
# build options out of policy's constants
- $policy->can($_) and $options{":$_"} = $policy->$_($package)
+ $policy->can($_) and $options{"$_"} = $policy->$_($package)
for (qw(
attribute_metaclass
instance_metaclass
=head1 NAME
-Moose::Policy - moose-mounted police
+Moose::Policy - Moose-mounted police
=head1 SYNOPSIS
removes most of that hairiness and makes it possible to cleanly contain
a set of meta-level customizations in one easy to use module.
-This is the first release of this module and it should not be considered to
+This is still an release of this module and it should not be considered to
be complete by any means. It is very basic implemenation at this point and
will likely get more feature-full over time, as people request features.
So if you have a suggestion/need/idea, please speak up.
C<Moose::Policy::> and the test suite. More docs to come on this later (probably
a cookbook or something).
+=head1 METHODS
+
+=over 4
+
+=item B<meta>
+
+=back
+
=head1 FUTURE PLANS
As I said above, this is the first release and it is by no means feature complete.
=head1 COPYRIGHT AND LICENSE
-Copyright 2006 by Infinity Interactive, Inc.
+Copyright 2006-2007 by Infinity Interactive, Inc.
L<http://www.iinteractive.com>