File Coverage

blib/lib/Data/Password/Filter/Params.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 27 27 100.0


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