localtime()
public
Returns a Time.local() instance of the simultaneous time in your system’s
ENV['TZ'] zone
# File activesupport/lib/active_support/time_with_zone.rb, line 76
def localtime
utc.respond_to?(:getlocal) ? utc.getlocal : utc.to_time.getlocal
end