File Coverage

blib/lib/MooseX/Role/Parameterized/Meta/Role/Parameterized.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package MooseX::Role::Parameterized::Meta::Role::Parameterized;
2             # ABSTRACT: metaclass for parameterized roles
3              
4             our $VERSION = '1.10';
5              
6 27     27   104 use Moose;
  27         43  
  27         185  
7             extends 'Moose::Meta::Role';
8             with 'MooseX::Role::Parameterized::Meta::Trait::Parameterized';
9              
10             __PACKAGE__->meta->make_immutable;
11 27     27   119145 no Moose;
  27         254  
  27         106  
12              
13             1;
14              
15             __END__
16              
17             =pod
18              
19             =encoding UTF-8
20              
21             =head1 NAME
22              
23             MooseX::Role::Parameterized::Meta::Role::Parameterized - metaclass for parameterized roles
24              
25             =head1 VERSION
26              
27             version 1.10
28              
29             =head1 DESCRIPTION
30              
31             This is the metaclass for parameterized roles; that is, parameterizable roles
32             with their parameters bound. See
33             L<MooseX::Role::Parameterized::Meta::Trait::Parameterized> which has all the guts.
34              
35             =head1 SUPPORT
36              
37             Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Role-Parameterized>
38             (or L<bug-MooseX-Role-Parameterized@rt.cpan.org|mailto:bug-MooseX-Role-Parameterized@rt.cpan.org>).
39              
40             There is also a mailing list available for users of this distribution, at
41             L<http://lists.perl.org/list/moose.html>.
42              
43             There is also an irc channel available for users of this distribution, at
44             L<C<#moose> on C<irc.perl.org>|irc://irc.perl.org/#moose>.
45              
46             =head1 AUTHOR
47              
48             Shawn M Moore <code@sartak.org>
49              
50             =head1 COPYRIGHT AND LICENSE
51              
52             This software is copyright (c) 2008 by Shawn M Moore.
53              
54             This is free software; you can redistribute it and/or modify it under
55             the same terms as the Perl 5 programming language system itself.
56              
57             =cut