~ubuntu-branches/ubuntu/raring/libmoosex-methodattributes-perl/raring

« back to all changes in this revision

Viewing changes to lib/MooseX/MethodAttributes/Role/Meta/Method.pm

  • Committer: Bazaar Package Importer
  • Author(s): Ansgar Burchardt
  • Date: 2010-06-01 21:38:04 UTC
  • mfrom: (1.1.11 upstream) (5.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100601213804-v0rycpl4eh3qe7wb
Tags: 0.22-1
* New upstream release.
* Bump (build-)dep on libmoose-perl to >= 0.98.
* Bump (build-)dep on libmoosex-types-perl to >= 0.20.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package MooseX::MethodAttributes::Role::Meta::Method;
2
 
our $VERSION = '0.20';
 
2
BEGIN {
 
3
  $MooseX::MethodAttributes::Role::Meta::Method::AUTHORITY = 'cpan:FLORA';
 
4
}
 
5
BEGIN {
 
6
  $MooseX::MethodAttributes::Role::Meta::Method::VERSION = '0.22';
 
7
}
3
8
# ABSTRACT: metamethod role allowing code attribute introspection
4
9
 
5
10
use Moose::Role;
27
32
1;
28
33
 
29
34
__END__
30
 
 
31
35
=pod
32
36
 
33
37
=head1 NAME
34
38
 
35
39
MooseX::MethodAttributes::Role::Meta::Method - metamethod role allowing code attribute introspection
36
40
 
37
 
=head1 VERSION
38
 
 
39
 
version 0.20
40
 
 
41
41
=head1 ATTRIBUTES
42
42
 
43
43
=head2 attributes
44
44
 
45
45
Gets the list of code attributes of the method represented by this meta method.
46
46
 
47
 
 
48
 
 
49
47
=head1 METHODS
50
48
 
51
49
=head2 _build_attributes
53
51
Builds the value of the C<attributes> attribute based on the attributes
54
52
captured in the associated meta class.
55
53
 
56
 
 
57
 
 
58
54
=head1 AUTHORS
59
55
 
60
56
  Florian Ragwitz <rafl@debian.org>
67
63
This is free software; you can redistribute it and/or modify it under
68
64
the same terms as the Perl 5 programming language system itself.
69
65
 
70
 
=cut 
71
 
 
 
66
=cut
72
67