line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
## no critic (RequireUseStrict) |
2
|
|
|
|
|
|
|
package Dist::Zilla::Plugin::LocalBrew; |
3
|
|
|
|
|
|
|
$Dist::Zilla::Plugin::LocalBrew::VERSION = '0.07'; |
4
|
|
|
|
|
|
|
## use critic (RequireUseStrict) |
5
|
1
|
|
|
1
|
|
1401670
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
10
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
extends 'Dist::Zilla::Plugin::Test::LocalBrew'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
before register_component => sub { |
10
|
|
|
|
|
|
|
warn "!!! [LocalBrew] is deprecated and may be removed in a future release; replace it with [Test::LocalBrew]\n"; |
11
|
|
|
|
|
|
|
}; |
12
|
|
|
|
|
|
|
|
13
|
1
|
|
|
1
|
|
6553
|
no Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
5
|
|
14
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=pod |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=encoding UTF-8 |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 NAME |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Dist::Zilla::Plugin::LocalBrew - DEPRECATED - Use Test::LocalBrew instead |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 VERSION |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
version 0.07 |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 SYNOPSIS |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
This module is deprecated; please use L<Dist::Zilla::Plugin::Test::LocalBrew> |
33
|
|
|
|
|
|
|
instead. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 AUTHOR |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Rob Hoelz <rob@hoelz.ro> |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
This software is copyright (c) 2014 by Rob Hoelz. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
44
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 BUGS |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Please report any bugs or feature requests on the bugtracker website |
49
|
|
|
|
|
|
|
https://github.com/hoelzro/dist-zilla-plugin-test-localbrew/issues |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
When submitting a bug or request, please include a test-file or a |
52
|
|
|
|
|
|
|
patch to an existing test-file that illustrates the bug or desired |
53
|
|
|
|
|
|
|
feature. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=cut |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
__END__ |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
# ABSTRACT: DEPRECATED - Use Test::LocalBrew instead |
60
|
|
|
|
|
|
|
|