File Coverage

blib/lib/Mojolicious/Plugin/SQLMaker.pm
Criterion Covered Total %
statement 18 23 78.2
branch 0 2 0.0
condition 0 2 0.0
subroutine 6 8 75.0
pod 1 1 100.0
total 25 36 69.4


line stmt bran cond sub pod time code
1             package Mojolicious::Plugin::SQLMaker;
2              
3 1     1   23385 use 5.006;
  1         5  
  1         55  
4 1     1   5 use strict;
  1         2  
  1         33  
5 1     1   4 use warnings FATAL => 'all';
  1         11  
  1         40  
6              
7 1     1   822 use Mojo::Base 'Mojolicious::Plugin';
  1         11431  
  1         8  
8 1     1   1353 use Carp;
  1         1  
  1         61  
9 1     1   777 use SQL::Maker;
  1         28923  
  1         219  
10              
11             =head1 NAME
12              
13             Mojolicious::Plugin::SQLMaker - The great new Mojolicious::Plugin::SQLMaker!
14              
15             =head1 VERSION
16              
17             Version 0.03
18              
19             =cut
20              
21             our $VERSION = '0.03';
22              
23              
24             =head1 SYNOPSIS
25              
26             Quick summary of what the module does.
27              
28             Perhaps a little code snippet.
29              
30             $self->plugin( SQLMaker => { driver => 'mysql' } );
31             $self->app->sb->insert($table, \%data);
32              
33             =head1 SUBROUTINES/METHODS
34              
35             =head2 register
36              
37             =cut
38              
39             sub register {
40 0     0 1   my ($self, $app, $conf) = @_;
41 0   0       $conf ||= {};
42              
43 0 0         croak "driver is required!" unless $conf->{driver};
44 0     0     $app->attr( 'sb' => sub { SQL::Maker->new( %$conf ) } );
  0            
45             }
46              
47             =head1 AUTHOR
48              
49             Tatsuya Fukata, C<< >>
50              
51             =head1 BUGS
52              
53             Please report any bugs or feature requests to C, or through
54             the web interface at L. I will be notified, and then you'll
55             automatically be notified of progress on your bug as I make changes.
56              
57              
58              
59              
60             =head1 SUPPORT
61              
62             You can find documentation for this module with the perldoc command.
63              
64             perldoc Mojolicious::Plugin::SQLMaker
65              
66              
67             You can also look for information at:
68              
69             =over 4
70              
71             =item * RT: CPAN's request tracker (report bugs here)
72              
73             L
74              
75             =item * AnnoCPAN: Annotated CPAN documentation
76              
77             L
78              
79             =item * CPAN Ratings
80              
81             L
82              
83             =item * Search CPAN
84              
85             L
86              
87             =back
88              
89              
90             =head1 ACKNOWLEDGEMENTS
91              
92              
93             =head1 LICENSE AND COPYRIGHT
94              
95             Copyright 2012 Tatsuya Fukata.
96              
97             This program is free software; you can redistribute it and/or modify it
98             under the terms of the the Artistic License (2.0). You may obtain a
99             copy of the full license at:
100              
101             L
102              
103             Any use, modification, and distribution of the Standard or Modified
104             Versions is governed by this Artistic License. By using, modifying or
105             distributing the Package, you accept this license. Do not use, modify,
106             or distribute the Package, if you do not accept this license.
107              
108             If your Modified Version has been derived from a Modified Version made
109             by someone other than you, you are nevertheless required to ensure that
110             your Modified Version complies with the requirements of this license.
111              
112             This license does not grant you the right to use any trademark, service
113             mark, tradename, or logo of the Copyright Holder.
114              
115             This license includes the non-exclusive, worldwide, free-of-charge
116             patent license to make, have made, use, offer to sell, sell, import and
117             otherwise transfer the Package with respect to any patent claims
118             licensable by the Copyright Holder that are necessarily infringed by the
119             Package. If you institute patent litigation (including a cross-claim or
120             counterclaim) against any party alleging that the Package constitutes
121             direct or contributory patent infringement, then this Artistic License
122             to you shall terminate on the date that such litigation is filed.
123              
124             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER
125             AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
126             THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
127             PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY
128             YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR
129             CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR
130             CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE,
131             EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
132              
133              
134             =cut
135              
136             1; # End of Mojolicious::Plugin::SQLMaker