File Coverage

blib/lib/Catalyst/Plugin/RapidApp.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Catalyst::Plugin::RapidApp;
2 4     4   2193 use Moose::Role;
  4         10  
  4         25  
3 4     4   17093 use namespace::autoclean;
  4         9  
  4         24  
4              
5 4     4   277 use RapidApp;
  4         11  
  4         125  
6              
7 4     4   1643 use Catalyst::Plugin::SimpleCAS 1.001;
  4         1208125  
  4         209  
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   1825 use RapidApp::AttributeHandlers;
  4         10  
  4         105  
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