line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Alien::Deno; |
2
|
|
|
|
|
|
|
$Alien::Deno::VERSION = '0.01'; |
3
|
1
|
|
|
1
|
|
280212
|
use strict; |
|
1
|
|
|
|
|
9
|
|
|
1
|
|
|
|
|
29
|
|
4
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
26
|
|
5
|
1
|
|
|
1
|
|
6
|
use base qw( Alien::Base ); |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
562
|
|
6
|
1
|
|
|
1
|
|
5219
|
use 5.008004; |
|
1
|
|
|
|
|
3
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
1; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Alien::Deno - Find or build Deno |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 SYNOPSIS |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Command line tool: |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
use Alien::Deno; |
19
|
|
|
|
|
|
|
use Env qw( @PATH ); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
unshift @PATH, Alien::Deno->bin_dir; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 DESCRIPTION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
This distribution provides Deno so that it can be used by other |
26
|
|
|
|
|
|
|
Perl distributions that are on CPAN. It does this by first trying to |
27
|
|
|
|
|
|
|
detect an existing install of Deno on your system. If found it |
28
|
|
|
|
|
|
|
will use that. If it cannot be found, the source code will be downloaded |
29
|
|
|
|
|
|
|
from the internet and it will be installed in a private share location |
30
|
|
|
|
|
|
|
for the use of other modules. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 SEE ALSO |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=over 4 |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=item L |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Documentation on the Alien concept itself. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=item L |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
The base class for this Alien. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=item L |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Detailed manual for users of Alien classes. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=back |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=cut |