Fix offense message from Rails/TimeZone. by mzp · Pull Request #1777 · rubocop/rubocop

Now, Rubocop generate "Use #Time.zone.[:new] instead." for following code. Time.new(2014, 1, 1) But Time.zone.new does not exist. We should use Time.zone.local. As requested in the contributing gui...