= private = protected
in_time_zone(new_zone = ::Time.zone)
Returns the simultaneous time in Time.zone, or the specified zone.
# File activesupport/lib/active_support/time_with_zone.rb, line 70 def in_time_zone(new_zone = ::Time.zone) return self if time_zone == new_zone utc.in_time_zone(new_zone) end