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 ?
|
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 ?
| |||||
feedback
|
|
The commercial method on the Date object will let you do this. This example will get you the next Monday.
If you need the next or previous Monday, whichever is closest, you can do:
I can't execute this right now, so forgive me if there are syntax errors. | |||||||
feedback
|
|
Assuming you want both directions: | |||
|
feedback
|
|
Untested, so you might need to finetune, but here you go:
| |||
|
feedback
|