line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Articulate::Storage; |
2
|
5
|
|
|
5
|
|
2671
|
use strict; |
|
5
|
|
|
|
|
9
|
|
|
5
|
|
|
|
|
185
|
|
3
|
5
|
|
|
5
|
|
22
|
use warnings; |
|
5
|
|
|
|
|
81
|
|
|
5
|
|
|
|
|
125
|
|
4
|
|
|
|
|
|
|
|
5
|
5
|
|
|
5
|
|
21
|
use Moo; |
|
5
|
|
|
|
|
9
|
|
|
5
|
|
|
|
|
26
|
|
6
|
|
|
|
|
|
|
extends 'Articulate::Storage::Local'; # let's cheat |
7
|
|
|
|
|
|
|
with 'Articulate::Role::Component'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
Articulate::Storage - store and retrieve your content |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 DESCRIPTION |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
This class doesn't delegate yet. At the moment, it's cheating and extending L. Use one of the storage providers listed below. |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=cut |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 SEE ALSO |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=item * L |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=item * L |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=item * L |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=cut |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
1; |