File Coverage

blib/lib/Device/Osram/Lightify.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             =head1 NAME
3            
4             Device::Osram::Lightify - The version of our release.
5            
6             =head1 DESCRIPTION
7            
8             This module just stores the version of our code.
9            
10             =cut
11              
12             =head1 SYNOPSIS
13            
14             use Device::Osram::Version;
15            
16             print $Device::Osram::Lightify::VERSION;
17            
18             =cut
19              
20             =head1 AUTHOR
21            
22             Steve Kemp <steve@steve.org.uk>
23            
24             =cut
25              
26             =head1 COPYRIGHT AND LICENSE
27            
28             Copyright (C) 2016 Steve Kemp <steve@steve.org.uk>.
29            
30             This library is free software. You can modify and or distribute it under
31             the same terms as Perl itself.
32            
33             =cut
34              
35             package Device::Osram::Lightify;
36              
37 1     1   884 use strict;
  1         1  
  1         25  
38 1     1   2 use warnings;
  1         1  
  1         31  
39              
40             our $VERSION = "0.6";
41              
42             1;
43