dzilize
Dave Rolsky [Wed, 14 Jul 2010 19:04:15 +0000 (14:04 -0500)]
MANIFEST.SKIP [deleted file]
lib/MooseX/SemiAffordanceAccessor.pm
lib/MooseX/SemiAffordanceAccessor/Role/Attribute.pm

diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
deleted file mode 100644 (file)
index 3a5db97..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-# Avoid version control files.
-^RCS
-^CVS
-,v$
-\.svn.*
-^\.hg
-^\.git
-
-# Avoid Makemaker generated and utility files.
-^Makefile$
-^blib
-^MakeMaker-\d
-^pm_to_blib$
-^blibdirs$
-^MANIFEST\.SKIP$
-
-# Avoid Module::Build generated and utility files.
-^Build$
-^_build
-^Build.bat$
-
-# Avoid temp and backup files.
-~$
-\.old$
-\.bak$
-\#$
-^\.#
-\.rej$
-\.orig$
-
-# Avoid Devel::Cover generated files
-^cover_db
-
-# kwalitee.t junk
-^Debian_CPANTS\.txt
-
-# Avoid tarballs
-\.(?:tar|tgz|tar\.gz)$
-
-^MooseX-SemiAffordanceAccessor-
-
-# No need to ship this
-\.shipit
index 8825503..9a7467b 100644 (file)
@@ -3,40 +3,25 @@ package MooseX::SemiAffordanceAccessor;
 use strict;
 use warnings;
 
-our $VERSION = '0.05';
-
 use Moose 0.84 ();
 use Moose::Exporter;
 use Moose::Util::MetaRole;
 use MooseX::SemiAffordanceAccessor::Role::Attribute;
 
-# The main reason to use this is to ensure that we get the right value
-# in $p{for_class} later.
-Moose::Exporter->setup_import_methods();
-
-sub init_meta {
-    shift;
-    my %p = @_;
-
-    Moose->init_meta(%p);
-
-    return Moose::Util::MetaRole::apply_metaclass_roles(
-        for_class => $p{for_class},
-        attribute_metaclass_roles =>
-            ['MooseX::SemiAffordanceAccessor::Role::Attribute'],
-    );
-}
+Moose::Exporter->setup_import_methods(
+    class_metaroles => {
+        attribute => ['MooseX::SemiAffordanceAccessor::Role::Attribute'],
+    },
+);
 
 1;
 
+# ABSTRACT: Name your accessors foo() and set_foo()
+
 __END__
 
 =pod
 
-=head1 NAME
-
-MooseX::SemiAffordanceAccessor - Name your accessors foo() and set_foo()
-
 =head1 SYNOPSIS
 
     use MooseX::SemiAffordanceAccessor;
@@ -60,10 +45,6 @@ attribute, then that attribute's naming scheme is left unchanged.
 The name "semi-affordance" comes from David Wheeler's Class::Meta
 module.
 
-=head1 AUTHOR
-
-Dave Rolsky, C<< <autarch@urth.org> >>
-
 =head1 BUGS
 
 Please report any bugs or feature requests to
@@ -72,11 +53,4 @@ the web interface at L<http://rt.cpan.org>.  I will be notified, and
 then you'll automatically be notified of progress on your bug as I
 make changes.
 
-=head1 COPYRIGHT & LICENSE
-
-Copyright 2007-2008 Dave Rolsky, All Rights Reserved.
-
-This program is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
 =cut
index 5fca8bd..3d0ff09 100644 (file)
@@ -34,10 +34,6 @@ no Moose::Role;
 
 1;
 
-=head1 NAME
-
-MooseX::SemiAffordanceAccessor::Role::Attribute - Names accessors in a semi-affordance style
-
 =head1 SYNOPSIS
 
   Moose::Util::MetaRole::apply_metaclass_roles(
@@ -52,16 +48,5 @@ This role applies a method modifier to the C<_process_options()>
 method, and tweaks the reader and writer parameters so that they
 follow the semi-affordance naming style.
 
-=head1 AUTHOR
-
-Dave Rolsky, C<< <autarch@urth.org> >>
-
-=head1 COPYRIGHT & LICENSE
-
-Copyright 2007-2008 Dave Rolsky, All Rights Reserved.
-
-This program is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
 =cut