File Coverage

lib/DBIx/Schema/Changelog/File.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package DBIx::Schema::Changelog::File;
2              
3             =head1 NAME
4              
5             DBIx::Schema::Changelog::File - Abstract file class.
6              
7             =head1 VERSION
8              
9             Version 0.8.0
10              
11             =cut
12              
13             our $VERSION = '0.8.0';
14              
15 5     5   5247 use utf8;
  5         35  
  5         31  
16 5     5   194 use strict;
  5         10  
  5         223  
17 5     5   29 use warnings FATAL => 'all';
  5         9  
  5         267  
18 5     5   1269 use Moose::Role;
  5         395183  
  5         36  
19              
20             requires 'load';
21              
22             1; # End of DBIx::Schema::Changelog::File
23              
24             __END__
25              
26             =head1 AUTHOR
27              
28             Mario Zieschang, C<< <mario.zieschang at combase.de> >>
29              
30             =head1 LICENSE AND COPYRIGHT
31              
32             Copyright 2015 Mario Zieschang.
33              
34             This program is free software; you can redistribute it and/or modify it
35             under the terms of the the Artistic License (2.0). You may obtain a
36             copy of the full license at:
37              
38             L<http://www.perlfoundation.org/artistic_license_2_0>
39              
40             Any use, modification, and distribution of the Standard or Modified
41             Versions is governed by this Artistic License. By using, modifying or
42             distributing the Package, you accept this license. Do not use, modify,
43             or distribute the Package, if you do not accept this license.
44              
45             If your Modified Version has been derived from a Modified Version made
46             by someone other than you, you are nevertheless required to ensure that
47             your Modified Version complies with the requirements of this license.
48              
49             This license does not grant you the right to use any trademark, service
50             mark, trade name, or logo of the Copyright Holder.
51              
52             This license includes the non-exclusive, worldwide, free-of-charge
53             patent license to make, have made, use, offer to sell, sell, import and
54             otherwise transfer the Package with respect to any patent claims
55             licensable by the Copyright Holder that are necessarily infringed by the
56             Package. If you institute patent litigation (including a cross-claim or
57             counterclaim) against any party alleging that the Package constitutes
58             direct or contributory patent infringement, then this Artistic License
59             to you shall terminate on the date that such litigation is filed.
60              
61             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER
62             AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
63             THE IMPLIED WARRANTIES OF MERCHANT ABILITY, FITNESS FOR A PARTICULAR
64             PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY
65             YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR
66             CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR
67             CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE,
68             EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
69              
70              
71             =cut
72