This method is deprecated or moved on the latest stable version.
The last existing version (v2.0.3) is shown here.
adjust(time)
public
Adjust the given time to the time zone represented by self.
# File activesupport/lib/active_support/values/time_zone.rb, line 47
def adjust(time)
time = time.to_time unless time.is_a?(::Time)
time + utc_offset - time.utc_offset
end