line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Task::MojoLearningEnvironment; |
2
|
2
|
|
|
2
|
|
3505
|
use strict; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
53
|
|
3
|
|
|
|
|
|
|
|
4
|
2
|
|
|
2
|
|
6
|
use warnings; |
|
2
|
|
|
|
|
1
|
|
|
2
|
|
|
|
|
31
|
|
5
|
2
|
|
|
2
|
|
5
|
no warnings; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
49
|
|
6
|
|
|
|
|
|
|
|
7
|
2
|
|
|
2
|
|
777
|
use subs qw(); |
|
2
|
|
|
|
|
30
|
|
|
2
|
|
|
|
|
39
|
|
8
|
2
|
|
|
2
|
|
6
|
use vars qw($VERSION); |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
84
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
$VERSION = '0.002'; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=encoding utf8 |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Task::MojoLearningEnvironment - Everything you need to play with Mojolicious, and more |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 SYNOPSIS |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
% cpan Task::MojoLearningEnvironment |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
% cpanm Task::MojoLearningEnvironment |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 DESCRIPTION |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
This module exists to specify the dependencies I want to use for |
27
|
|
|
|
|
|
|
my Mojolicious classes. If you think I should add something else, |
28
|
|
|
|
|
|
|
send a pull request. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 SOURCE AVAILABILITY |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
This source is in a Git repository: |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
https://github.com/briandfoy/Task-MojoLearningEnvironment |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 AUTHOR |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
brian d foy, C<< >> |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Copyright © 2015, brian d foy . All rights reserved. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
You may redistribute this under the same terms as Perl itself. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=cut |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
1; |