File Coverage

blib/lib/Data/Record/Serialize/Role/Encode.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             # ABSTRACT: Encode Role
3              
4             use Moo::Role;
5 18     18   26420  
  18         42  
  18         113  
6             use namespace::clean;
7 18     18   7267  
  18         51  
  18         158  
8             our $VERSION = '1.04';
9              
10             requires 'encode';
11              
12             1;
13              
14             #
15             # This file is part of Data-Record-Serialize
16             #
17             # This software is Copyright (c) 2017 by Smithsonian Astrophysical Observatory.
18             #
19             # This is free software, licensed under:
20             #
21             # The GNU General Public License, Version 3, June 2007
22             #
23              
24              
25             =pod
26              
27             =for :stopwords Diab Jerius Smithsonian Astrophysical Observatory
28              
29             =head1 NAME
30              
31             Data::Record::Serialize::Role::Encode - Encode Role
32              
33             =head1 VERSION
34              
35             version 1.04
36              
37             =head1 DESCRIPTION
38              
39             If a role consumes this, it signals that it provides encoding
40             capabilities.
41              
42             =head1 SUPPORT
43              
44             =head2 Bugs
45              
46             Please report any bugs or feature requests to bug-data-record-serialize@rt.cpan.org or through the web interface at: https://rt.cpan.org/Public/Dist/Display.html?Name=Data-Record-Serialize
47              
48             =head2 Source
49              
50             Source is available at
51              
52             https://gitlab.com/djerius/data-record-serialize
53              
54             and may be cloned from
55              
56             https://gitlab.com/djerius/data-record-serialize.git
57              
58             =head1 SEE ALSO
59              
60             Please see those modules/websites for more information related to this module.
61              
62             =over 4
63              
64             =item *
65              
66             L<Data::Record::Serialize|Data::Record::Serialize>
67              
68             =back
69              
70             =head1 AUTHOR
71              
72             Diab Jerius <djerius@cpan.org>
73              
74             =head1 COPYRIGHT AND LICENSE
75              
76             This software is Copyright (c) 2017 by Smithsonian Astrophysical Observatory.
77              
78             This is free software, licensed under:
79              
80             The GNU General Public License, Version 3, June 2007
81              
82             =cut