| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Devel::IPerl::Display::Role::MIMEType; |
|
2
|
|
|
|
|
|
|
$Devel::IPerl::Display::Role::MIMEType::VERSION = '0.008'; |
|
3
|
2
|
|
|
2
|
|
985
|
use strict; |
|
|
2
|
|
|
|
|
6
|
|
|
|
2
|
|
|
|
|
64
|
|
|
4
|
2
|
|
|
2
|
|
13
|
use warnings; |
|
|
2
|
|
|
|
|
6
|
|
|
|
2
|
|
|
|
|
55
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
2
|
|
|
2
|
|
12
|
use Moo::Role; |
|
|
2
|
|
|
|
|
5
|
|
|
|
2
|
|
|
|
|
13
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has mimetype => ( is => 'ro', builder => 1 ); |
|
9
|
|
|
|
|
|
|
requires '_build_mimetype'; |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
1; |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
__END__ |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=pod |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=encoding UTF-8 |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Devel::IPerl::Display::Role::MIMEType |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 VERSION |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
version 0.008 |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 AUTHOR |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Zakariyya Mughal <zmughal@cpan.org> |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
This software is copyright (c) 2014 by Zakariyya Mughal. |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
|
36
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |