line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Acme::Resume::Internal; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# ABSTRACT: Moops wrapper for internal use |
4
|
|
|
|
|
|
|
our $VERSION = '0.0106'; |
5
|
|
|
|
|
|
|
|
6
|
1
|
|
|
1
|
|
8
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
39
|
|
7
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
32
|
|
8
|
|
|
|
|
|
|
|
9
|
1
|
|
|
1
|
|
7
|
use base 'MoopsX::UsingMoose'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
160
|
|
10
|
|
|
|
|
|
|
|
11
|
1
|
|
|
1
|
|
620
|
use Types::Standard(); |
|
1
|
|
|
|
|
119419
|
|
|
1
|
|
|
|
|
72
|
|
12
|
1
|
|
|
1
|
|
626
|
use Types::URI(); |
|
1
|
|
|
|
|
154094
|
|
|
1
|
|
|
|
|
54
|
|
13
|
1
|
|
|
1
|
|
418
|
use Acme::Resume::Types(); |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
138
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub import { |
16
|
2
|
|
|
2
|
|
5
|
my $class = shift; |
17
|
2
|
|
|
|
|
6
|
my %opts = @_; |
18
|
|
|
|
|
|
|
|
19
|
2
|
|
50
|
|
|
4
|
push @{ $opts{'imports'} ||= [] } => ( |
|
2
|
|
|
|
|
25
|
|
20
|
|
|
|
|
|
|
'Types::Standard' => ['-types'], |
21
|
|
|
|
|
|
|
'Types::URI' => ['-types'], |
22
|
|
|
|
|
|
|
'Acme::Resume::Types' => [{ replace => 1 }, '-types'], |
23
|
|
|
|
|
|
|
); |
24
|
|
|
|
|
|
|
|
25
|
2
|
|
|
|
|
26
|
$class->SUPER::import(%opts); |
26
|
|
|
|
|
|
|
} |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
1; |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
__END__ |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=pod |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=encoding UTF-8 |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 NAME |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Acme::Resume::Internal - Moops wrapper for internal use |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 VERSION |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Version 0.0106, released 2021-10-31. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 SOURCE |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
L<https://github.com/Csson/p5-Acme-Resume> |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 HOMEPAGE |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
L<https://metacpan.org/release/Acme-Resume> |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head1 AUTHOR |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Erik Carlsson <info@code301.com> |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
This software is copyright (c) 2021 by Erik Carlsson. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
61
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=cut |