File Coverage

blib/lib/WWW/StatsMix/Metric.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package WWW::StatsMix::Metric;
2              
3             $WWW::StatsMix::Metric::VERSION = '0.05';
4              
5             =head1 NAME
6              
7             WWW::StatsMix::Metric - Placeholder for StatsMix Metric.
8              
9             =head1 VERSION
10              
11             Version 0.05
12              
13             =cut
14              
15 12     12   298 use 5.006;
  12         36  
  12         497  
16 12     12   61 use Moo;
  12         27  
  12         73  
17 12     12   3818 use namespace::clean;
  12         22  
  12         106  
18              
19             has id => (is => 'ro');
20             has name => (is => 'ro');
21             has profile_id => (is => 'ro');
22             has include_in_email => (is => 'ro');
23             has sharing => (is => 'ro');
24             has url => (is => 'ro');
25             has created_at => (is => 'ro');
26             has updated_at => (is => 'ro');
27              
28             =head1 METHODS
29              
30             =head2 id()
31              
32             =head2 name()
33              
34             =head2 profile_id()
35              
36             =head2 include_in_email()
37              
38             =head2 sharing()
39              
40             =head2 url()
41              
42             =head2 created_at()
43              
44             =head2 updated_at()
45              
46             =head1 AUTHOR
47              
48             Mohammad S Anwar, C<< >>
49              
50             =head1 REPOSITORY
51              
52             L
53              
54             =head1 BUGS
55              
56             Please report any bugs or feature requests to C,
57             or through the web interface at L.
58             I will be notified, and then you'll automatically be notified of progress on your
59             bug as I make changes.
60              
61             =head1 SUPPORT
62              
63             You can find documentation for this module with the perldoc command.
64              
65             perldoc WWW::StatsMix::Metric
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             Copyright (C) 2014 - 2015 Mohammad S Anwar.
90              
91             This program is free software; you can redistribute it and/or modify it under
92             the terms of the the Artistic License (2.0). You may obtain a copy of the full
93             license at:
94              
95             L
96              
97             Any use, modification, and distribution of the Standard or Modified Versions is
98             governed by this Artistic License.By using, modifying or distributing the Package,
99             you accept this license. Do not use, modify, or distribute the Package, if you do
100             not accept this license.
101              
102             If your Modified Version has been derived from a Modified Version made by someone
103             other than you,you are nevertheless required to ensure that your Modified Version
104             complies with the requirements of this license.
105              
106             This license does not grant you the right to use any trademark, service mark,
107             tradename, or logo of the Copyright Holder.
108              
109             This license includes the non-exclusive, worldwide, free-of-charge patent license
110             to make, have made, use, offer to sell, sell, import and otherwise transfer the
111             Package with respect to any patent claims licensable by the Copyright Holder that
112             are necessarily infringed by the Package. If you institute patent litigation
113             (including a cross-claim or counterclaim) against any party alleging that the
114             Package constitutes direct or contributory patent infringement,then this Artistic
115             License to you shall terminate on the date that such litigation is filed.
116              
117             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND
118             CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
119             WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
120             NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS
121             REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT,
122             INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE
123             OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
124              
125             =cut
126              
127             1; # End of WWW::StatsMix::Metric