Leonid Shevtsovが述べたように、ActiveSupport2.3Date.beginning_of_day
では尊重しませんTime.zone
Rails4.0またはActiveSupport2.3を使用してスタックし、カスタム日付を使用する必要がある場合、私が使用した代替手段:
date = Date.new(2014,10,29)
date.to_time.change(hour: 0, min: 0, sec: 0).in_time_zone #.beginning_of_day
date.to_time.change(hour: 23, min: 59, sec: 59).in_time_zone #.end_of_day
結果:
2.0.0-p247 :001 > date = Date.new(2014,10,29)
=> Wed, 29 Oct 2014
2.0.0-p247 :002 > date.to_time.change(hour: 0, min: 0, sec: 0)
=> 2014-10-29 00:00:00 -0500
2.0.0-p247 :003 > date.to_time.change(hour: 0, min: 0, sec: 0).in_time_zone
=> Wed, 29 Oct 2014 05:00:00 UTC +00:00
2.0.0-p247 :004 > date.to_time.change(hour: 23, min: 59, sec: 59)
=> 2014-10-29 23:59:59 -0500
2.0.0-p247 :005 > date.to_time.change(hour: 23, min: 59, sec: 59).in_time_zone
=> Thu, 30 Oct 2014 04:59:59 UTC +00:00
.beginning_of_dayから.end_of_dayを使用した元の失敗したモデルスコープが機能しませんでした:
scope :on_day, ->(date) { where( created_at: date.beginning_of_day..date.end_of_day ) }
そして、Rails 4.0にアップグレードできなかったので、これが修正されました。
scope :on_day, ->(date) { where( created_at: date.to_time.change(hour: 0, min: 0, sec: 0).in_time_zone..date.to_time.change(hour: 23, min: 59, sec: 59).in_time_zone ) }