fix the erroneous ->kv call in the docs
[gitmo/Moose.git] / lib / Moose / Meta / Attribute / Native / Trait / Code.pm
index efff8d7..79d70d5 100644 (file)
@@ -1,10 +1,6 @@
 package Moose::Meta::Attribute::Native::Trait::Code;
 use Moose::Role;
 
-our $VERSION   = '1.9900';
-$VERSION = eval $VERSION;
-our $AUTHORITY = 'cpan:STEVAN';
-
 with 'Moose::Meta::Attribute::Native::Trait';
 
 sub _helper_type { 'CodeRef' }
@@ -13,11 +9,11 @@ no Moose::Role;
 
 1;
 
-=pod
+# ABSTRACT: Helper trait for CodeRef attributes
 
-=head1 NAME
+__END__
 
-Moose::Meta::Attribute::Native::Trait::Code - Helper trait for Code attributes
+=pod
 
 =head1 SYNOPSIS
 
@@ -66,17 +62,4 @@ Calls the coderef with the the instance as invocant and given args.
 
 See L<Moose/BUGS> for details on reporting bugs.
 
-=head1 AUTHOR
-
-  Florian Ragwitz <rafl@debian.org>
-
-=head1 COPYRIGHT AND LICENSE
-
-Copyright 2007-2009 by Infinity Interactive, Inc.
-
-L<http://www.iinteractive.com>
-
-This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
 =cut