Skip to content

Instantly share code, notes, and snippets.

@cherring
Created April 9, 2010 02:46
Show Gist options
  • Save cherring/360836 to your computer and use it in GitHub Desktop.
Save cherring/360836 to your computer and use it in GitHub Desktop.
def last_sunday_of_last_month
month = 1.month.ago
days = month.end_of_month.mday
date = Date.new(month.year, month.month, days)
Date.new(month.year, month.month, (days - date.wday))
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment