class ReeDatetime::Now

def call

def call
  tz = get_default_tz_info
  offset = offset_to_string(tz.utc_offset)
  time = DateTime.now
  return time if time.zone == offset
    
  time.new_offset(offset)
end