What is a good Perl module (or good approach) that returns all the valid calendar dates between a start date and an end date?
For example, if I have 1/29/2009 as a start date and 2/3/2009 as an end date then I would like it to return an array of 1/30/2009, 1/31/2009, 2/1/2009, and 2/2/2009. There must be a good Perl module that already does this and accounts for leap years, months, but I can't find it.
Thanks for your suggestions!