rubychronic

Get the last Sunday of the Month


I'm using Chronic to get the last Sunday of the month of any given year. It will gladly give me the n‌th Sunday, but not the last.

This works, but is not what I need:

Chronic.parse('4th sunday in march', :now => Time.local(2015,1,1))

This is what I need, but doesn't work:

Chronic.parse('last sunday in march', :now => Time.local(2015,1,1))

Is there any way around this apparent limitation?

UPDATE: I'm upvoting the two answers below because they're both good, but I've already implemented this in "pure Ruby" (in 2 lines of code, besides the require 'date' line), but I'm trying to demonstrate to management that Ruby is the right language to use to replace a Java codebase that is going away (and which had dozens of lines of code to compute this), and I told one manager that I probably could do it in one line of Ruby, and it would be readable and easy to maintain.


Solution

  • This works, and is as readable as I can get:

    Chronic.parse('last sunday', now: Date.new(year,3,31))
    

    Thanks to Ismael Abreu for the idea to just parse 'last sunday' and control the rest via the :now option.

    UPDATE: Please also upvote Ismael's answer.