line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package App::TimeTracker::Constants; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# ABSTRACT: App::TimeTracker pre-defined constants |
4
|
|
|
|
|
|
|
our $VERSION = '3.010'; # VERSION |
5
|
|
|
|
|
|
|
|
6
|
7
|
|
|
7
|
|
50
|
use strict; |
|
7
|
|
|
|
|
17
|
|
|
7
|
|
|
|
|
245
|
|
7
|
7
|
|
|
7
|
|
41
|
use warnings; |
|
7
|
|
|
|
|
13
|
|
|
7
|
|
|
|
|
200
|
|
8
|
7
|
|
|
7
|
|
178
|
use 5.010; |
|
7
|
|
|
|
|
27
|
|
9
|
|
|
|
|
|
|
|
10
|
7
|
|
|
7
|
|
40
|
use Exporter; |
|
7
|
|
|
|
|
16
|
|
|
7
|
|
|
|
|
326
|
|
11
|
7
|
|
|
7
|
|
43
|
use parent qw(Exporter); |
|
7
|
|
|
|
|
16
|
|
|
7
|
|
|
|
|
60
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our @EXPORT = qw(); |
14
|
|
|
|
|
|
|
our @EXPORT_OK = qw(MISSING_PROJECT_HELP_MSG); |
15
|
|
|
|
|
|
|
|
16
|
7
|
|
|
|
|
637
|
use constant MISSING_PROJECT_HELP_MSG => |
17
|
|
|
|
|
|
|
"Could not find project; did you forget to run `tracker init`?\n" . |
18
|
7
|
|
|
7
|
|
902
|
"If not, use --project or chdir into the project directory."; |
|
7
|
|
|
|
|
17
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
1; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
__END__ |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=pod |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=encoding UTF-8 |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 NAME |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
App::TimeTracker::Constants - App::TimeTracker pre-defined constants |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 VERSION |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
version 3.010 |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 DESCRIPTION |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Pre-defined constants used without the module's internals. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 AUTHOR |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Thomas Klausner <domm@plix.at> |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
This software is copyright (c) 2011 - 2021 by Thomas Klausner. |
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 |