line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Catalyst::Plugin::RapidApp; |
2
|
4
|
|
|
4
|
|
2760
|
use Moose::Role; |
|
4
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
37
|
|
3
|
4
|
|
|
4
|
|
20812
|
use namespace::autoclean; |
|
4
|
|
|
|
|
13
|
|
|
4
|
|
|
|
|
72
|
|
4
|
|
|
|
|
|
|
|
5
|
4
|
|
|
4
|
|
348
|
use RapidApp; |
|
4
|
|
|
|
|
32
|
|
|
4
|
|
|
|
|
161
|
|
6
|
|
|
|
|
|
|
|
7
|
4
|
|
|
4
|
|
2038
|
use Catalyst::Plugin::SimpleCAS 1.001; |
|
4
|
|
|
|
|
1410052
|
|
|
4
|
|
|
|
|
245
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
# Built-in plugins required for all RapidApp Applications: |
10
|
|
|
|
|
|
|
with qw( |
11
|
|
|
|
|
|
|
RapidApp::Role::CatalystApplication |
12
|
|
|
|
|
|
|
Catalyst::Plugin::SimpleCAS |
13
|
|
|
|
|
|
|
RapidApp::Role::AssetControllers |
14
|
|
|
|
|
|
|
); |
15
|
|
|
|
|
|
|
|
16
|
4
|
|
|
4
|
|
2244
|
use RapidApp::AttributeHandlers; |
|
4
|
|
|
|
|
15
|
|
|
4
|
|
|
|
|
139
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__END__ |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 NAME |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Catalyst::Plugin::RapidApp - main plugin class for RapidApp |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 SYNOPSIS |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
package MyApp; |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
use Catalyst qw/ RapidApp /; |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 DESCRIPTION |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
This is the primary Catalyst plugin that enables RapidApp in a Catalyst application. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
This plugin is loaded automatically by all RapidApp plugins and typically doesn't need to be |
37
|
|
|
|
|
|
|
loaded directly. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 SEE ALSO |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=over |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=item * |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
L<RapidApp::Manual::Plugins> |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=back |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head1 AUTHOR |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Henry Van Styn <vanstyn@cpan.org> |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
This software is copyright (c) 2013 by IntelliTree Solutions llc. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
58
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=cut |
61
|
|
|
|
|
|
|
|