So right now it is 2:54 PM PST in San Francisco. For some reason, this code block is not returning 12:54 PM HST in Hawaii. Am I missing something here? I would expect this c
Don't use Time.now this is using your local time zone instead use Time.current
Time.now
Time.current
Time.use_zone('Hawaii') do p Time.current end