Updates for 0.03.
Dave Rolsky [Sat, 8 Dec 2007 17:44:48 +0000 (17:44 +0000)]
Split main functionality into separate sub which accepts a package as
the first argument. Really, this should be part of a class metaclass,
but that's an annoying road to go down.

Changes
lib/MooseX/ClassAttribute.pm
t/pod-coverage.t

diff --git a/Changes b/Changes
index d58661d..4cd1bb7 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,10 @@
+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
index 9eb4d88..b7c6398 100644 (file)
@@ -3,7 +3,7 @@ package MooseX::ClassAttribute;
 use strict;
 use warnings;
 
-our $VERSION = '0.02';
+our $VERSION = '0.03';
 our $AUTHORITY = 'cpan:DROLSKY';
 
 our @EXPORT = 'class_has'; ## no critic ProhibitAutomaticExportation
@@ -18,6 +18,15 @@ sub class_has ## no critic RequireArgUnpacking
 {
     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();
@@ -85,7 +94,7 @@ sub class_has ## no critic RequireArgUnpacking
 }
 
 # This is basically copied from Moose.pm
-sub unimport ## no critic RequireFinalReturn
+sub unimport ## no critic RequireFinalReturn, RequireArgUnpacking
 {
     my $caller = Moose::_get_caller(@_);
 
@@ -166,6 +175,16 @@ Own little nit is that if you include C<no Moose> in your class, you
 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
index 517c730..4005e5e 100644 (file)
@@ -11,4 +11,4 @@ eval "use Test::Pod::Coverage 1.04";
 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)$/ ] } );