+++ /dev/null
-# 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
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;
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
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
1;
-=head1 NAME
-
-MooseX::SemiAffordanceAccessor::Role::Attribute - Names accessors in a semi-affordance style
-
=head1 SYNOPSIS
Moose::Util::MetaRole::apply_metaclass_roles(
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