line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Statocles::Store::File; |
2
|
|
|
|
|
|
|
our $VERSION = '0.085'; |
3
|
|
|
|
|
|
|
# ABSTRACT: (DEPRECATED) A store made up of plain files |
4
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
5215
|
use Statocles::Base 'Class'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
14
|
|
6
|
1
|
|
|
1
|
|
6416
|
use Statocles::Util qw( derp ); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
67
|
|
7
|
|
|
|
|
|
|
extends 'Statocles::Store'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
derp "Statocles::Store::File is deprecated and will be removed in v1.000. Please use Statocles::Store instead."; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
__END__ |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=pod |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=encoding UTF-8 |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Statocles::Store::File - (DEPRECATED) A store made up of plain files |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 VERSION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
version 0.085 |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 DESCRIPTION |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
This store was removed and its functionality put completely into L<Statocles::Store>. |
30
|
|
|
|
|
|
|
This module is deprecated and will be removed at the 2.0 release according to the |
31
|
|
|
|
|
|
|
deprecation policy L<Statocles::Help::Policy>. See L<Statocles::Help::Upgrading> |
32
|
|
|
|
|
|
|
for how to upgrade. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 AUTHOR |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Doug Bell <preaction@cpan.org> |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
This software is copyright (c) 2016 by Doug Bell. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
43
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=cut |