2

我的 rake 任务挂在无限循环中时遇到问题。到目前为止,我已经能够将问题隔离为一段将日期范围转换为数组的代码。即使我直接调用它:

(1.month.ago.beginning_of_month..1.month.ago.end_of_month).to_a.each {|d| p d}

该任务永远挂起迭代相同的元素:

"2012-06-01 00:40:41 UTC"
"2012-06-01 00:40:41 UTC"
"2012-06-01 00:40:41 UTC"
"2012-06-01 00:40:41 UTC"
"2012-05-31 20:40:41 UTC"
"2012-05-31 20:40:41 UTC"
"2012-06-01 00:40:42 UTC"
"2012-06-01 00:40:42 UTC"
"2012-06-01 00:40:42 UTC"
"2012-06-01 00:40:42 UTC"
"2012-05-31 20:40:42 UTC"
"2012-05-31 20:40:42 UTC"
...

如果相反我使用这个

(Date.new(2012,6,1)..Date.new(2012,6,30)).to_a.each {|d| p d}

一切正常,因此必须专门针对日期/时间使用 ActiveSupport 扩展。有没有其他人看过这个?

这发生在带有 Rails 3.1 和 Ruby 1.9.3 的 Windows 机器上的开发环境中,如果这很重要的话。

4

2 回答 2

3

您正在创建一个Time以 1 秒为增量和约 250 万个条目的一个月范围:

(1.month.ago.beginning_of_month..1.month.ago.end_of_month)
# => Fri, 01 Jun 2012 00:00:00 CEST +02:00..Sat, 30 Jun 2012 23:59:59 CEST +02:00
1.month.ago.beginning_of_month.succ
# => Fri, 01 Jun 2012 00:00:01 CEST +02:00

要创建Date范围,请使用:

(1.month.ago.beginning_of_month.to_date..1.month.ago.end_of_month.to_date)
# => Fri, 01 Jun 2012..Sat, 30 Jun 2012
1.month.ago.beginning_of_month.to_date.succ
# => Sat, 02 Jun 2012
于 2012-07-23T14:41:54.433 回答
1

用于to_date转换ActiveSupport::TimeWithZoneDate.

(1.month.ago.beginning_of_month.to_date..1.month.ago.end_of_month.to_date).
  each do |day| 
    p day
  end

这将在过去一个月中迭代数天。

看来问题在于使用发出警告的succ方法。ActiveSupport::TimeWithZoneTime#succ is obsolete

于 2012-07-23T14:41:13.980 回答