File Coverage

blib/lib/Data/Context/BEM/Block.pm
Criterion Covered Total %
statement 24 24 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 32 32 100.0


line stmt bran cond sub pod time code
1             package Data::Context::BEM::Block;
2              
3             # Created on: 2013-11-04 16:45:07
4             # Create by: Ivan Wills
5             # $Id$
6             # $Revision$, $HeadURL$, $Date$
7             # $Revision$, $Source$, $Date$
8              
9 1     1   1138 use Moose;
  1         2  
  1         6  
10 1     1   4751 use namespace::autoclean;
  1         3  
  1         8  
11 1     1   54 use version;
  1         2  
  1         6  
12 1     1   55 use Carp;
  1         1  
  1         55  
13 1     1   5 use Scalar::Util;
  1         1  
  1         35  
14 1     1   4 use List::Util;
  1         1  
  1         45  
15 1     1   4 use Data::Dumper qw/Dumper/;
  1         1  
  1         32  
16 1     1   4 use English qw/ -no_match_vars /;
  1         1  
  1         7  
17              
18             our $VERSION = version->new('0.0.4');
19              
20             __PACKAGE__->meta->make_immutable;
21              
22             1;
23              
24             __END__
25              
26             =head1 NAME
27              
28             Data::Context::BEM::Block - The base module for custom BEM block handlers
29              
30             =head1 VERSION
31              
32             This documentation refers to Data::Context::BEM::Block version 0.0.4
33              
34             =head1 SYNOPSIS
35              
36             use Data::Context::BEM::Block;
37              
38             # Brief but working code example(s) here showing the most common usage(s)
39             # This section will be as far as many users bother reading, so make it as
40             # educational and exemplary as possible.
41              
42             =head1 DESCRIPTION
43              
44             =head1 SUBROUTINES/METHODS
45              
46             =head1 DIAGNOSTICS
47              
48             =head1 CONFIGURATION AND ENVIRONMENT
49              
50             =head1 DEPENDENCIES
51              
52             =head1 INCOMPATIBILITIES
53              
54             =head1 BUGS AND LIMITATIONS
55              
56             There are no known bugs in this module.
57              
58             Please report problems to Ivan Wills (ivan.wills@gmail.com).
59              
60             Patches are welcome.
61              
62             =head1 AUTHOR
63              
64             Ivan Wills - (ivan.wills@gmail.com)
65              
66             =head1 LICENSE AND COPYRIGHT
67              
68             Copyright (c) 2013 Ivan Wills (14 Mullion Close, Hornsby Heights, NSW Australia 2077).
69             All rights reserved.
70              
71             This module is free software; you can redistribute it and/or modify it under
72             the same terms as Perl itself. See L<perlartistic>. This program is
73             distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
74             without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
75             PARTICULAR PURPOSE.
76              
77             =cut