Sha256: 885c50b1ab747654b1a72dcf908603a2546591ab53d5150ea956edcf2dd53c7b

Contents?: true

Size: 1.02 KB

Versions: 12

Compression:

Stored size: 1.02 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? :Time) :zone= ...)
        PATTERN

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

          add_offense(node)
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/time_zone_assignment.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/time_zone_assignment.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/time_zone_assignment.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/time_zone_assignment.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.17.2 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.17.1 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.17.0 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.16.1 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.16.0 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.15.2 lib/rubocop/cop/rails/time_zone_assignment.rb
rubocop-rails-2.15.1 lib/rubocop/cop/rails/time_zone_assignment.rb