hi,
I'm trying to understand why I can not make time_zone working. It always return the same date whatever time_zone I configured :
Time.zone
=> #<ActiveSupport::TimeZone:0x7fca81c99318 @utc_offset=3600, @name="Paris", @tzinfo=nil>
User.first.silent_mode_at
=> Sat Jan 01 22:00:00 UTC 2000
Time.zone="Hawaii"
=> "Hawaii"
User.first.silent_mode_at
=> Sat Jan 01 22:00:00 UTC 2000
Should'nt the time change after I setup the Time.zone properly ?
Thank you!