line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Stepford::Trait::StepProduction; |
2
|
|
|
|
|
|
|
|
3
|
43
|
|
|
43
|
|
332
|
use strict; |
|
43
|
|
|
|
|
105
|
|
|
43
|
|
|
|
|
1419
|
|
4
|
43
|
|
|
43
|
|
252
|
use warnings; |
|
43
|
|
|
|
|
95
|
|
|
43
|
|
|
|
|
1137
|
|
5
|
43
|
|
|
43
|
|
228
|
use namespace::autoclean; |
|
43
|
|
|
|
|
101
|
|
|
43
|
|
|
|
|
277
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.006001'; |
8
|
|
|
|
|
|
|
|
9
|
43
|
|
|
43
|
|
3242
|
use Moose::Role; |
|
43
|
|
|
|
|
109
|
|
|
43
|
|
|
|
|
318
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
## no critic (Subroutines::ProhibitQualifiedSubDeclarations) |
12
|
|
|
|
|
|
|
sub Moose::Meta::Attribute::Custom::Trait::StepProduction::register_implementation |
13
|
|
|
|
|
|
|
{ |
14
|
43
|
|
|
43
|
|
365450
|
return __PACKAGE__; |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
#ABSTRACT: A trait for attributes which are a step production |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
__END__ |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=pod |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=encoding UTF-8 |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 NAME |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Stepford::Trait::StepProduction - A trait for attributes which are a step production |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 VERSION |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
version 0.006001 |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 SUPPORT |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Bugs may be submitted through L<https://github.com/maxmind/Stepford/issues>. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 AUTHOR |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Dave Rolsky <drolsky@maxmind.com> |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
This software is copyright (c) 2014 - 2023 by MaxMind, Inc. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
48
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=cut |