Why not adopt me?
This distribution is up for adoption!
If you're interested then please contact the PAUSE module admins via
email.
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.