File Coverage

blib/lib/MooseX/AttributeHelpers/Meta/Method/Curried.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package MooseX::AttributeHelpers::Meta::Method::Curried;
2 22     22   83 use Moose;
  22         24  
  22         104  
3              
4             our $VERSION = '0.25';
5              
6             extends 'Moose::Meta::Method';
7              
8             1;
9              
10             __END__
11              
12             =pod
13              
14             =encoding UTF-8
15              
16             =head1 NAME
17              
18             MooseX::AttributeHelpers::Meta::Method::Curried
19              
20             =head1 VERSION
21              
22             version 0.25
23              
24             =head1 DESCRIPTION
25              
26             This is an extension of Moose::Meta::Method to mark I<curried> methods.
27              
28             =head1 METHODS
29              
30             =over 4
31              
32             =item B<meta>
33              
34             =back
35              
36             =head1 SUPPORT
37              
38             Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-AttributeHelpers>
39             (or L<bug-MooseX-AttributeHelpers@rt.cpan.org|mailto:bug-MooseX-AttributeHelpers@rt.cpan.org>).
40              
41             There is also a mailing list available for users of this distribution, at
42             L<http://lists.perl.org/list/moose.html>.
43              
44             There is also an irc channel available for users of this distribution, at
45             L<C<#moose> on C<irc.perl.org>|irc://irc.perl.org/#moose>.
46              
47             =head1 AUTHOR
48              
49             Stevan Little <stevan@iinteractive.com>
50              
51             =head1 COPYRIGHT AND LICENSE
52              
53             This software is copyright (c) 2007 by Stevan Little and Infinity Interactive, Inc.
54              
55             This is free software; you can redistribute it and/or modify it under
56             the same terms as the Perl 5 programming language system itself.
57              
58             =cut