File Coverage

blib/lib/Map/Tube/Pluggable.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Map::Tube::Pluggable;
2              
3             $Map::Tube::Pluggable::VERSION = '3.40';
4             $Map::Tube::Pluggable::AUTHORITY = 'cpan:MANWAR';
5              
6             =head1 NAME
7              
8             Map::Tube::Pluggable - Class to load plugins for Map::Tube.
9              
10             =head1 VERSION
11              
12             Version 3.40
13              
14             =cut
15              
16 1     1   2107 use 5.006;
  1         4  
17 1     1   4 use strict; use warnings;
  1     1   2  
  1         53  
  1         6  
  1         2  
  1         39  
18 1     1   307 use Module::Pluggable search_path => ['Map::Tube::Plugin'], require => 1, max_depth => 4;
  1         6480  
  1         8  
19              
20             =head1 DESCRIPTION
21              
22             B
23              
24             =head1 AUTHOR
25              
26             Mohammad S Anwar, C<< >>
27              
28             =head1 REPOSITORY
29              
30             L
31              
32             =head1 BUGS
33              
34             Please report any bugs or feature requests to C, or
35             through the web interface at L.
36             I will be notified and then you'll automatically be notified of progress on your
37             bug as I make changes.
38              
39             =head1 SUPPORT
40              
41             You can find documentation for this module with the perldoc command.
42              
43             perldoc Map::Tube::Pluggable
44              
45             You can also look for information at:
46              
47             =over 4
48              
49             =item * RT: CPAN's request tracker (report bugs here)
50              
51             L
52              
53             =item * AnnoCPAN: Annotated CPAN documentation
54              
55             L
56              
57             =item * CPAN Ratings
58              
59             L
60              
61             =item * Search CPAN
62              
63             L
64              
65             =back
66              
67             =head1 LICENSE AND COPYRIGHT
68              
69             Copyright (C) 2010 - 2016 Mohammad S Anwar.
70              
71             This program is free software; you can redistribute it and/or modify it under
72             the terms of the the Artistic License (2.0). You may obtain a copy of the full
73             license at:
74              
75             L
76              
77             Any use, modification, and distribution of the Standard or Modified Versions is
78             governed by this Artistic License.By using, modifying or distributing the Package,
79             you accept this license. Do not use, modify, or distribute the Package, if you do
80             not accept this license.
81              
82             If your Modified Version has been derived from a Modified Version made by someone
83             other than you,you are nevertheless required to ensure that your Modified Version
84             complies with the requirements of this license.
85              
86             This license does not grant you the right to use any trademark, service mark,
87             tradename, or logo of the Copyright Holder.
88              
89             This license includes the non-exclusive, worldwide, free-of-charge patent license
90             to make, have made, use, offer to sell, sell, import and otherwise transfer the
91             Package with respect to any patent claims licensable by the Copyright Holder that
92             are necessarily infringed by the Package. If you institute patent litigation
93             (including a cross-claim or counterclaim) against any party alleging that the
94             Package constitutes direct or contributory patent infringement,then this Artistic
95             License to you shall terminate on the date that such litigation is filed.
96              
97             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND
98             CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
99             WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
100             NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS
101             REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT,
102             INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE
103             OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
104              
105             =cut
106              
107             1; # End of Map::Tube::Pluggable