File Coverage

blib/lib/Dist/Iller/Elk.pm
Criterion Covered Total %
statement 30 30 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod 0 1 0.0
total 39 40 97.5


line stmt bran cond sub pod time code
1 2     2   24 use 5.10.0;
  2         6  
2 2     2   10 use strict;
  2         3  
  2         39  
3 2     2   9 use warnings;
  2         7  
  2         128  
4              
5             package Dist::Iller::Elk;
6              
7             our $AUTHORITY = 'cpan:CSSON'; # AUTHORITY
8             # ABSTRACT: A slightly extended Moose
9             our $VERSION = '0.1409';
10              
11 2     2   1223 use Moose();
  2         984228  
  2         82  
12 2     2   1682 use MooseX::AttributeShortcuts();
  2         1039788  
  2         72  
13 2     2   1043 use MooseX::AttributeDocumented();
  2         15215  
  2         54  
14 2     2   15 use namespace::autoclean();
  2         5  
  2         35  
15 2     2   10 use Moose::Exporter;
  2         6  
  2         7  
16              
17             Moose::Exporter->setup_import_methods(also => ['Moose']);
18              
19             sub init_meta {
20 13     13 0 1507 my $class = shift;
21              
22 13         79 my %params = @_;
23 13         52 my $for_class = $params{'for_class'};
24 13         72 Moose->init_meta(@_);
25 13         69455 MooseX::AttributeShortcuts->init_meta(for_class => $for_class);
26 13         308557 MooseX::AttributeDocumented->init_meta(for_class => $for_class);
27 13         366 namespace::autoclean->import(-cleanee => $for_class);
28             }
29              
30             1;
31              
32             __END__
33              
34             =pod
35              
36             =encoding UTF-8
37              
38             =head1 NAME
39              
40             Dist::Iller::Elk - A slightly extended Moose
41              
42             =head1 VERSION
43              
44             Version 0.1409, released 2020-12-27.
45              
46             =head1 SOURCE
47              
48             L<https://github.com/Csson/p5-Dist-Iller>
49              
50             =head1 HOMEPAGE
51              
52             L<https://metacpan.org/release/Dist-Iller>
53              
54             =head1 AUTHOR
55              
56             Erik Carlsson <info@code301.com>
57              
58             =head1 COPYRIGHT AND LICENSE
59              
60             This software is copyright (c) 2016 by Erik Carlsson.
61              
62             This is free software; you can redistribute it and/or modify it under
63             the same terms as the Perl 5 programming language system itself.
64              
65             =cut