Closed. This question is off-topic. It is not currently accepting answers. Learn more
想改进这个问题吗Update the question所以堆栈溢出的值小于aa>。
5年前关闭。
我想得到今年1月1日到12月31日星期一的名单
在ruby中最好的方法是什么?

最佳答案

简单地说,我需要得到这个范围内所有星期一的清单
为此使用Date#monday?

require 'date'

start_date = Date.new(2013,1,1)
end_date = Date.new(2013,12,31)
(start_date..end_date).select(&:monday?)

10-06 07:25