= private = protected
unadjust(time)
Reinterprets the given time value as a time in the current time zone, and then adjusts it to return the corresponding time in the local time zone.
# File activesupport/lib/active_support/values/time_zone.rb, line 55 def unadjust(time) time = Time.local(*time.to_time.to_a) time - utc_offset + time.utc_offset end