The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Gentoo::ChangeLog::Parser::Eventual::Simple - A very crude ChangeLog -> Graph translation.

VERSION

version 0.1.2

SYNOPSIS

    use Gentoo::ChangeLog::Parser::Eventual::Simple;
    use Path::Class qw( file );

    my $arrayRef = Gentoo::ChangeLog::Parser::Eventual::Simple->parse_lines(
        file("some_file")->slurp( chomp => 1 )
    );

DESCRIPTION

This is a very simple consumer of Gentoo::ChangeLog::Parser::Eventual that uses the events to accumulate an array of hash objects describing the source document.

METHODS

parse_lines

Specification: $arrayref = $class->parse_lines( @list_of_lines )

Each line should be pre-chomped.

Example:

    my $arrayRef = Gentoo::ChangeLog::Parser::Eventual::Simple->parse_lines(
        file("some_file")->slurp( chomp => 1 )
    );

AUTHOR

Kent Fredric <kentnl@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Kent Fredric <kentnl@cpan.org>.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.