line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package App::GitGot::Command::milk; |
2
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:GENEHACK'; |
3
|
|
|
|
|
|
|
$App::GitGot::Command::milk::VERSION = '1.336'; |
4
|
15
|
|
|
15
|
|
6905
|
use 5.014; |
|
15
|
|
|
|
|
45
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
# ABSTRACT: well, do you? |
7
|
15
|
|
|
15
|
|
70
|
use App::GitGot -command; |
|
15
|
|
|
|
|
26
|
|
|
15
|
|
|
|
|
80
|
|
8
|
|
|
|
|
|
|
|
9
|
15
|
|
|
15
|
|
3903
|
use Moo; |
|
15
|
|
|
|
|
24
|
|
|
15
|
|
|
|
|
67
|
|
10
|
|
|
|
|
|
|
extends 'App::GitGot::Command'; |
11
|
15
|
|
|
15
|
|
3923
|
use namespace::autoclean; |
|
15
|
|
|
|
|
33
|
|
|
15
|
|
|
|
|
82
|
|
12
|
|
|
|
|
|
|
|
13
|
42
|
|
|
42
|
1
|
3164
|
sub command_names { qw/ milk / } |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub _execute { |
16
|
|
|
|
|
|
|
# Doesn't use 'cowsay' in case it's not installed |
17
|
0
|
|
|
0
|
|
|
print " ___________\n"; |
18
|
0
|
|
|
|
|
|
print "< got milk? >\n"; |
19
|
0
|
|
|
|
|
|
print " -----------\n"; |
20
|
0
|
|
|
|
|
|
print " \\ ^__^\n"; |
21
|
0
|
|
|
|
|
|
print " \\ (oo)\\_______\n"; |
22
|
0
|
|
|
|
|
|
print " (__)\\ )\\/\\ \n"; |
23
|
0
|
|
|
|
|
|
print " ||----w |\n"; |
24
|
0
|
|
|
|
|
|
print " || ||\n"; |
25
|
0
|
|
|
|
|
|
print "\n"; |
26
|
|
|
|
|
|
|
} |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
1; |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
__END__ |