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

NAME

Acme::PM::Paris::Meetings - Get the date/time of the next Paris.pm meeting!

VERSION

Version 200905.04

SYNOPSIS

Using the 'paris-pm' script:

    $ paris-pm -3

One-liner:

    perl -MAcme::PM::Paris::Meetings -e "print next_meeting"

Longer:

    use DateTime;
    use Acme::PM::Paris::Meetings;

    my $rec = Acme::PM::Paris::Meetings::recurrence();
    my $dt = $rec->iterator->next(DateTime->now(time_zone => 'Europe/Paris'));
    ...

FUNCTIONS

recurrence

Returns a new DateTime::Set from which you can get the date/time of the planned Paris.pm meeting for the following months.

next_meeting

Convenience function that returns the date/time of the next Paris.pm meeting as a string formatted for french humans.

An internal recurrence object is maintained so if you call the method multiple times, you will get different results.

ical

Returns the current ICal expression for the next Paris.pm meeting.

VERSION NUMBERS

Numbering scheme: YYYYMM.nn where YYYY is the year, MM the month and nn the release number in the month.

AUTHOR

Olivier Mengué, <dolmen at cpan.org>

BUGS

Let's hope a recent release of the module has been released and you are using it!

You can still check http://paris.mongueurs.net/ before visiting us.

Please report any bugs or feature requests to bug-acme-pm-paris-meetings at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Acme-PM-Paris-Meetings. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Acme::PM::Paris::Meetings

You can also look for information at:

ACKNOWLEDGEMENTS

The cool guys from Paris.pm http://paris.mongueurs.net/

COPYRIGHT & LICENSE

Copyright 2009 Olivier Mengué, all rights reserved.

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