The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
##
# name:      Pegex::Crontab
# abstract:  Pegex Crontab Parser
# author:    Ingy döt Net <ingy@cpan.org>
# license:   perl
# copyright: 2011
# see:
# - Pegex

use 5.010;

use Pegex 0.21 ();
use lexicals 0.21 ();

package Pegex::Crontab;
use Pegex::Base;
extends 'Pegex::Module';

our $VERSION = '0.12';

use Pegex::Crontab::Grammar;
use Pegex::Crontab::AST;

has grammar_class => 'Pegex::Crontab::Grammar';
has receiver_class => 'Pegex::Crontab::AST';

1;

=head1 SYNOPSIS

    my $data = Pegex::Crontab->parse($json);

=head1 DESCRIPTION

Pegex::Crontab is a crontab parser written in Pegex.