line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Fey::Role::TableLike; |
2
|
|
|
|
|
|
|
|
3
|
26
|
|
|
26
|
|
17888
|
use strict; |
|
26
|
|
|
|
|
57
|
|
|
26
|
|
|
|
|
1135
|
|
4
|
26
|
|
|
26
|
|
149
|
use warnings; |
|
26
|
|
|
|
|
42
|
|
|
26
|
|
|
|
|
1112
|
|
5
|
26
|
|
|
26
|
|
144
|
use namespace::autoclean; |
|
26
|
|
|
|
|
45
|
|
|
26
|
|
|
|
|
225
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.43'; |
8
|
|
|
|
|
|
|
|
9
|
26
|
|
|
26
|
|
2466
|
use Moose::Role; |
|
26
|
|
|
|
|
62
|
|
|
26
|
|
|
|
|
247
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
with 'Fey::Role::Joinable'; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
requires 'sql_for_select_clause'; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
# ABSTRACT: A role for things that are like a table |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
__END__ |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=pod |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 NAME |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Fey::Role::TableLike - A role for things that are like a table |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 VERSION |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
version 0.43 |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 SYNOPSIS |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
use Moose 2.1200; |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
with 'Fey::Role::TableLike'; |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 DESCRIPTION |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
This role has no methods or attributes of its own. It does consume the |
40
|
|
|
|
|
|
|
L<Fey::Role::Joinable> role. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 BUGS |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
See L<Fey> for details on how to report bugs. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 AUTHOR |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Dave Rolsky <autarch@urth.org> |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
This software is Copyright (c) 2011 - 2015 by Dave Rolsky. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
This is free software, licensed under: |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The Artistic License 2.0 (GPL Compatible) |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=cut |