File Coverage

blib/lib/Data/Grid/Excel/XLSX.pm
Criterion Covered Total %
statement 12 16 75.0
branch n/a
condition n/a
subroutine 4 5 80.0
pod 1 1 100.0
total 17 22 77.2


line stmt bran cond sub pod time code
1             package Data::Grid::Excel::XLSX;
2              
3 1     1   1113 use warnings FATAL => 'all';
  1         2  
  1         44  
4 1     1   6 use strict;
  1         2  
  1         31  
5              
6 1     1   935 use Spreadsheet::XLSX;
  1         202527  
  1         270  
7              
8 1     1   15 use base 'Data::Grid::Excel';
  1         2  
  1         241  
9              
10             =head1 NAME
11              
12             Data::Grid::Excel::XLSX - XML-based Excel driver for Data::Grid
13              
14             =head1 VERSION
15              
16             Version 0.01_01
17              
18             =cut
19              
20             our $VERSION = '0.01_01';
21              
22             =head1 METHODS
23              
24             =head2 new
25              
26             =cut
27              
28             sub new {
29 0     0 1   my $class = shift;
30 0           my %p = @_;
31 0           $p{proxy} = Spreadsheet::XLSX->new($p{fh});
32 0           bless \%p, $class;
33             }
34              
35             =head1 AUTHOR
36              
37             Dorian Taylor, C<< >>
38              
39             =head1 BUGS
40              
41             Please report any bugs or feature requests to C, or through
42             the web interface at L. I will be notified, and then you'll
43             automatically be notified of progress on your bug as I make changes.
44              
45             =head1 SUPPORT
46              
47             You can find documentation for this module with the perldoc command.
48              
49             perldoc Data::Grid::Excel
50              
51              
52             You can also look for information at:
53              
54             =over 4
55              
56             =item * RT: CPAN's request tracker
57              
58             L
59              
60             =item * AnnoCPAN: Annotated CPAN documentation
61              
62             L
63              
64             =item * CPAN Ratings
65              
66             L
67              
68             =item * Search CPAN
69              
70             L
71              
72             =back
73              
74              
75             =head1 ACKNOWLEDGEMENTS
76              
77              
78             =head1 LICENSE AND COPYRIGHT
79              
80             Copyright 2010 Dorian Taylor.
81              
82             This program is free software; you can redistribute it and/or modify it
83             under the terms of either: the GNU General Public License as published
84             by the Free Software Foundation; or the Artistic License.
85              
86             See http://dev.perl.org/licenses/ for more information.
87              
88              
89             =cut
90              
91             1; # End of Data::Grid::Excel