Given a date, how do I find the nearest Monday in Rails?

I know I can do things like:

Date.tomorrow Date.today

Is there something like Date.nearest :monday ?

link|improve this question

73% accept rate
2  
do you need to go in both directions? i.e. if it is tuesday, go to yesterday but if it is friday go to the next monday? – zsalzbank Dec 23 '10 at 1:22
feedback

3 Answers

up vote 4 down vote accepted

The commercial method on the Date object will let you do this. This example will get you the next Monday.

Date.commercial(Date.today.year, 1+Date.today.cweek, 1)

If you need the next or previous Monday, whichever is closest, you can do:

Date.commercial(Date.today.year, Date.cwday.modulo(4)+Date.today.cweek, 1)

I can't execute this right now, so forgive me if there are syntax errors.

link|improve this answer
.divmod(4) returns an array. You could use .divmod(4)[1] or .modulo(4) instead ;D – PeterWong Dec 23 '10 at 2:33
@PeterWong thanks for pointing that out. It's been corrected. – sgriffinusa Dec 23 '10 at 2:34
Thanks! Sorry for the long delay in response, holiday! :-) – Chanpory Jan 18 '11 at 6:53
feedback

Assuming you want both directions: Date.today.beginning_of_week + 7*(Date.today.wday/5)

link|improve this answer
feedback

Untested, so you might need to finetune, but here you go:

def Date.nearest_monday
  today = Date.today
  wday  = today.wday
  if wday > 4 # over the half of the week
    today + (7 - wday) # next monday
  else
    today - (1 + wday) # previous monday
  end
end 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.