to_time_in_current_zone()
Converts Date to a TimeWithZone in the current zone if Time.zone or Time.zone_default is set, otherwise converts Date to a Time via Date#to_time
# File activesupport/lib/active_support/core_ext/date/zones.rb, line 7 def to_time_in_current_zone if ::Time.zone ::Time.zone.local(year, month, day) else to_time end end