Sha256: 3885acdd0c0f1aae69fbc45ea1b49681cbcbd02bb9364d4ee943e79eabbebccc

Contents?: true

Size: 1.03 KB

Versions: 32

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Rails
      # Checks for the use of `Time.zone=` method.
      #
      # The `zone` attribute persists for the rest of the Ruby runtime, potentially causing
      # unexpected behavior at a later time.
      # Using `Time.use_zone` ensures the code passed in the block is the only place Time.zone is affected.
      # It eliminates the possibility of a `zone` sticking around longer than intended.
      #
      # @example
      #   # bad
      #   Time.zone = 'EST'
      #
      #   # good
      #   Time.use_zone('EST') do
      #   end
      #
      class TimeZoneAssignment < Base
        MSG = 'Use `Time.use_zone` with block instead of `Time.zone=`.'
        RESTRICT_ON_SEND = %i[zone=].freeze

        def_node_matcher :time_zone_assignment?, <<~PATTERN
          (send (const {nil? cbase} :Time) :zone= ...)
        PATTERN

        def on_send(node)
          return unless time_zone_assignment?(node)

          add_offense(node)
        end
      end
    end
  end
end

Version data entries

32 entries across 31 versions & 6 rubygems

Version Path
rubocop-rails-2.27.0 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.26.2 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.26.1 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.26.0 lib/rubocop/cop/rails/time_zone_assignment.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.25.1/lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.25.1 lib/rubocop/cop/rails/time_zone_assignment.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.25.0/lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.24.1 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.24.0 lib/rubocop/cop/rails/time_zone_assignment.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.23.1/lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.23.1 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.23.0 lib/rubocop/cop/rails/time_zone_assignment.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rails-2.20.0/lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.22.2 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.22.1 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.22.0 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.21.2 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.21.1 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.21.0 lib/rubocop/cop/rails/time_zone_assignment.rb
mlh-rubocop-config-1.0.2 vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/time_zone_assignment.rb