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