Module: LocaltimePatch

Defined in:
lib/dynamic_time_zone/localtime_patch.rb

Instance Method Summary collapse

Instance Method Details

#localtime(utc_offset = nil) ⇒ Object Also known as: getlocal



4
5
6
7
8
# File 'lib/dynamic_time_zone/localtime_patch.rb', line 4

def localtime(utc_offset = nil)
  return super unless DynamicTimeZone.enabled

  utc + (utc_offset || 0).seconds
end