# File lib/active_support/time_with_zone.rb, line 164
    def +(other)
      result = utc.acts_like?(:date) ? utc.since(other) : utc + other rescue utc.since(other)
      result.in_time_zone(time_zone)
    end