NAME

Mail::Freshmeat - class for parsing e-mail newsletters from freshmeat.net


SYNOPSIS

    $newsletter = new Mail::Freshmeat( \*STDIN );
    $newsletter->parse;

    foreach my $entry (@{$newsletter->entries}) {

      print "Name: $entry->{name}";
      print "Version: $entry->{version};
      ...

      # Get an entry line as if it was from the first list
      # in the newsletter
      print $newsletter->short_entry($entry), "\n";

    }


DESCRIPTION

A subclass of Mail::Internet.

This package provides parsing of the daily e-mail newsletters which are sent out from http://freshmeat.net/ to any individual who requests them.


METHODS


ACCESSORS


AUTHOR

Adam Spiers <adam@spiers.net>


LICENSE

All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


VERSION

This is release 0.91.


SEE ALSO

perl(1).