line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
1
|
|
|
1
|
|
386
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
23
|
|
2
|
1
|
|
|
1
|
|
2
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
33
|
|
3
|
|
|
|
|
|
|
package MetaCPAN::Moose; |
4
|
|
|
|
|
|
|
$MetaCPAN::Moose::VERSION = '0.000001'; |
5
|
1
|
|
|
1
|
|
391
|
use Import::Into; |
|
1
|
|
|
|
|
2189
|
|
|
1
|
|
|
|
|
46
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
sub import { |
8
|
|
|
|
|
|
|
$_->import::into( scalar caller ) |
9
|
2
|
|
|
2
|
|
351558
|
for qw( Moose MooseX::StrictConstructor namespace::autoclean ); |
10
|
|
|
|
|
|
|
} |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
1; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=pod |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=encoding UTF-8 |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
MetaCPAN::Moose - Use Moose the MetaCPAN way |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 VERSION |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
version 0.000001 |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 SYNOPSIS |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
use MetaCPAN::Moose; |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 DESCRIPTION |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
MetaCPAN::Moose automatically imports L<MooseX::StrictConstructor> and |
33
|
|
|
|
|
|
|
L<namespace::autcolean> for you. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 ACKNOWLEDGEMENTS |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
I showed my code to Sawyer when it was ready to release. He sat down and |
38
|
|
|
|
|
|
|
rewrote it completely. :) |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 AUTHOR |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Olaf Alders <olaf@wundercounter.com> |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
This software is copyright (c) 2016 by Olaf Alders. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
49
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=cut |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
__END__ |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
# ABSTRACT: Use Moose the MetaCPAN way |
56
|
|
|
|
|
|
|
|