| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
#!/usr/bin/perl |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
package MooseX::Compile::CLI; |
|
4
|
1
|
|
|
1
|
|
34413
|
use Moose; |
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
extends qw(MooseX::App::Cmd); |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = "0.01"; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
__PACKAGE__ |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
__END__ |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=pod |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
MooseX::Compile::CLI - Command line interface for MooseX::Compile |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
> mxcompile help |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
> mxcompile compile |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
> mxcompile clean |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 TODO |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=over 4 |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=item * |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Add an C<inspect> command that helps you look at C<.mopc> files. |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=back |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
L<MooseX::Compile>, L<MooseX::App::Cmd> |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 VERSION CONTROL |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
L<http://code2.0beta.co.uk/moose/svn/MooseX-Compile-CLI/trunk> |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 AUTHOR |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Yuval Kogman E<lt>nothingmuch@woobling.orgE<gt> |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 COPYRIGHT |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Copyright (c) 2008 Infinity Interactive, Yuval Kogman. All rights reserved |
|
53
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
|
54
|
|
|
|
|
|
|
under the same terms as Perl itself. |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=cut |