= 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.to_time unless time.is_a?(::Time) time = time.localtime time - utc_offset - time.utc_offset end