Version 1.04
[gitmo/Moose.git] / lib / Moose / Meta / Attribute / Native / Trait / Code.pm
index 2ea8d82..eba8a3b 100644 (file)
@@ -2,7 +2,7 @@ package Moose::Meta::Attribute::Native::Trait::Code;
 use Moose::Role;
 use Moose::Meta::Attribute::Native::MethodProvider::Code;
 
-our $VERSION   = '0.93_03';
+our $VERSION   = '1.04';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -15,7 +15,6 @@ has method_provider => (
     default   => 'Moose::Meta::Attribute::Native::MethodProvider::Code',
 );
 
-sub _default_is { 'ro' }
 sub _helper_type { 'CodeRef' }
 
 no Moose::Role;
@@ -26,7 +25,7 @@ no Moose::Role;
 
 =head1 NAME
 
-Moose::Meta::Attribute::Native::Trait::Code
+Moose::Meta::Attribute::Native::Trait::Code - Helper trait for Code attributes
 
 =head1 SYNOPSIS
 
@@ -59,6 +58,10 @@ This provides operations on coderef attributes.
 
 Calls the coderef with the given args.
 
+=item B<execute_method(@args)>
+
+Calls the coderef with the the instance as invocant and given args.
+
 =back
 
 =head1 METHODS