NAME

Date::Advent

VERSION

Version 1.20161219

SYNOPSIS

Date::Advent takes a Time::Piece date and calculates all four Sundays of Advent for the current Christian liturgical year.

As Advent is the beginning of the Christian liturgical calendar, this usually results in the date for Advent in the current year being dates in the past. E.g. The Sundays of Advent returned for 12. March 2016 would be 29. November 2015, 6. December 2015, 13. December 2015, and 20. December 2015.

Perhaps a little code snippet.

use Time::Piece;
use Date::Advent;

my $testAdvent = Date::Advent->new(date => Time::Piece->strptime("2016-01-01", "%Y-%m-%d"));
say $testAdvent->firstSunday; #Gives date for first Sunday of Advent
say $testAdvent->secondSunday; #Gives date for second Sunday of Advent
say $testAdvent->thirdSunday; #Gives date for third Sunday of Advent
say $testAdvent->fourthSunday; #Gives date for fourth Sunday of Advent
say $testAdvent->christmas; #Gives date of Christmas

SUBROUTINES/METHODS

BUILD

Constructor for the Date::Advent object. Takes the Time::Piece argument of date as the date to calculate the current Christian liturgical year's Sundays of Advent from.

AUTHOR

Michael Wayne Arnold, <marmanold at cpan.org>

BUGS

Please report any bugs or feature requests to bug-date-advent at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Date-Advent. 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 Date::Advent

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

Copyright 2016 Michael Wayne Arnold.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.