File Coverage

blib/lib/Calendar/Plugin/Renderer/SVG/Box.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Calendar::Plugin::Renderer::SVG::Box;
2              
3             $Calendar::Plugin::Renderer::SVG::Box::VERSION = '0.10';
4             $Calendar::Plugin::Renderer::SVG::Box::AUTHORITY = 'cpan:MANWAR';
5              
6             =head1 NAME
7              
8             Calendar::Plugin::Renderer::SVG::Box - Interface to 'box' of calendar in SVG format.
9              
10             =head1 VERSION
11              
12             Version 0.10
13              
14             =cut
15              
16 1     1   12 use 5.006;
  1         2  
17 1     1   3 use Data::Dumper;
  1         1  
  1         31  
18              
19 1     1   8 use Moo;
  1         0  
  1         4  
20 1     1   171 use namespace::clean;
  1         1  
  1         5  
21              
22             has 'x' => (is => 'ro', required => 1);
23             has 'y' => (is => 'ro', required => 1);
24             has 'height' => (is => 'ro', required => 1);
25             has 'width' => (is => 'ro', required => 1);
26             has 'text' => (is => 'rw');
27              
28             =head1 DESCRIPTION
29              
30             B.
31              
32             =head1 AUTHOR
33              
34             Mohammad S Anwar, C<< >>
35              
36             =head1 REPOSITORY
37              
38             L
39              
40             =head1 BUGS
41              
42             Please report any bugs / feature requests to C,
43             or through the web interface at L.
44             I will be notified, and then you'll automatically be notified of progress on your
45             bug as I make changes.
46              
47             =head1 SUPPORT
48              
49             You can find documentation for this module with the perldoc command.
50              
51             perldoc Calendar::Plugin::Renderer::SVG::Box
52              
53             You can also look for information at:
54              
55             =over 4
56              
57             =item * RT: CPAN's request tracker
58              
59             L
60              
61             =item * AnnoCPAN: Annotated CPAN documentation
62              
63             L
64              
65             =item * CPAN Ratings
66              
67             L
68              
69             =item * Search CPAN
70              
71             L
72              
73             =back
74              
75             =head1 LICENSE AND COPYRIGHT
76              
77             Copyright (C) 2015 - 2016 Mohammad S Anwar.
78              
79             This program is free software; you can redistribute it and / or modify it under
80             the terms of the the Artistic License (2.0). You may obtain a copy of the full
81             license at:
82              
83             L
84              
85             Any use, modification, and distribution of the Standard or Modified Versions is
86             governed by this Artistic License.By using, modifying or distributing the Package,
87             you accept this license. Do not use, modify, or distribute the Package, if you do
88             not accept this license.
89              
90             If your Modified Version has been derived from a Modified Version made by someone
91             other than you,you are nevertheless required to ensure that your Modified Version
92             complies with the requirements of this license.
93              
94             This license does not grant you the right to use any trademark, service mark,
95             tradename, or logo of the Copyright Holder.
96              
97             This license includes the non-exclusive, worldwide, free-of-charge patent license
98             to make, have made, use, offer to sell, sell, import and otherwise transfer the
99             Package with respect to any patent claims licensable by the Copyright Holder that
100             are necessarily infringed by the Package. If you institute patent litigation
101             (including a cross-claim or counterclaim) against any party alleging that the
102             Package constitutes direct or contributory patent infringement,then this Artistic
103             License to you shall terminate on the date that such litigation is filed.
104              
105             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND
106             CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
107             WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
108             NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS
109             REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT,
110             INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE
111             OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
112              
113             =cut
114              
115             1; # End of Calendar::Plugin::Renderer::SVG::Box