+0.03 2007-12-08
+
+- Split main functionality out of sugar sub class_has(), into
+ process_class_attribute(). This makes it easier to create attributes
+ on behalf of other classes.
+
+
0.02 2007-11-25
- Inherit from Exporter, rather than trying to import its
use strict;
use warnings;
-our $VERSION = '0.02';
+our $VERSION = '0.03';
our $AUTHORITY = 'cpan:DROLSKY';
our @EXPORT = 'class_has'; ## no critic ProhibitAutomaticExportation
{
my $caller = caller();
+ process_class_attribute( $caller, @_ );
+
+ return;
+}
+
+sub process_class_attribute ## no critic RequireArgUnpacking
+{
+ my $caller = shift;
+
my $caller_meta = $caller->meta();
my @parents = $caller_meta->superclasses();
}
# This is basically copied from Moose.pm
-sub unimport ## no critic RequireFinalReturn
+sub unimport ## no critic RequireFinalReturn, RequireArgUnpacking
{
my $caller = Moose::_get_caller(@_);
won't remove the C<class_has()> function. To do that you must include
C<no MooseX::ClassAttribute> as well.
+If you want to use this module to create class attributes in I<other>
+classes, you can call the C<process_class_attribute()> function like
+this:
+
+ MooseX::ClassAttribute::process_class_attribute( $package, ... );
+
+The first argument is the package which will have the class attribute,
+and the remaining arguments are the same as those passed to
+C<class_has()>.
+
=head2 Implementation and Immutability
Underneath the hood, this class creates one new class for each class
plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage"
if $@;
-all_pod_coverage_ok( { trustme => [ qr/^(?:class_has|container_class|unimport)$/ ] } );
+all_pod_coverage_ok( { trustme => [ qr/^(?:class_has|process_class_attribute|container_class|unimport)$/ ] } );