NAME

Spreadsheet::Template::Generator::Parser - role for classes which parse an existing spreadsheet

VERSION

version 0.05

SYNOPSIS

package MyParser;
use Moose;

with 'Spreadsheet::Template::Generator::Parser';

sub parse {
    # ...
}

DESCRIPTION

This role should be consumed by any class which will be used as the parser_class in a Spreadsheet::Template::Generator instance.

METHODS

parse($filename) (required)

This method should parse the spreadsheet specified by $filename and return the intermediate data structure containing all of the data in that spreadsheet. The intermediate data format is documented in Spreadsheet::Template.

AUTHOR

Jesse Luehrs <doy@tozt.net>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2015 by Jesse Luehrs.

This is free software, licensed under:

The MIT (X11) License