QuackatronHQ / Gigarepo

Time should be used with zone RB-RL1054
Bug risk
Major
1 occurrence in this check
Do not use Time.now without zone. Use one of Time.zone.now, Time.current, Time.now.in_time_zone, Time.now.utc, Time.now.getlocal, Time.now.xmlschema, Time.now.iso8601, Time.now.jisx0301, Time.now.rfc3339, Time.now.httpdate, Time.now.to_i, Time.now.to_f instead.
 1class User < ApplicationRecord
 2  attribute :confirmed_at, :datetime, default: Time.now 3
 4  after_commit :schedule_welcome_email, on: :create
 5