Sha256: 52ae7081d86032b59f63a482c3471de5a0a745768af0bb4b809fb856ca3a9415

Contents?: true

Size: 1.22 KB

Versions: 6778

Compression:

Stored size: 1.22 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for uses of class variables. Offenses
      # are signaled only on assignment to class variables to
      # reduce the number of offenses that would be reported.
      #
      # You have to be careful when setting a value for a class
      # variable; if a class has been inherited, changing the
      # value of a class variable also affects the inheriting
      # classes. This means that it's almost always better to
      # use a class instance variable instead.
      #
      # @example
      #   # bad
      #   class A
      #     @@test = 10
      #   end
      #
      #   # good
      #   class A
      #     @test = 10
      #   end
      #
      #   class A
      #     def test
      #       @@test # you can access class variable without offense
      #     end
      #   end
      #
      class ClassVars < Cop
        MSG = 'Replace class var %<class_var>s with a class ' \
              'instance var.'.freeze

        def on_cvasgn(node)
          add_offense(node, location: :name)
        end

        def message(node)
          class_var, = *node
          format(MSG, class_var: class_var)
        end
      end
    end
  end
end

Version data entries

6,778 entries across 6,772 versions & 24 rubygems

Version Path
rubocop-0.67.1 lib/rubocop/cop/style/class_vars.rb
rubocop-0.67.0 lib/rubocop/cop/style/class_vars.rb
rubocop-0.66.0 lib/rubocop/cop/style/class_vars.rb
rubocop-0.65.0 lib/rubocop/cop/style/class_vars.rb
rubocop-0.64.0 lib/rubocop/cop/style/class_vars.rb
rubocop-0.63.1 lib/rubocop/cop/style/class_vars.rb
rubocop-0.63.0 lib/rubocop/cop/style/class_vars.rb
rubocop-0.62.0 lib/rubocop/cop/style/class_vars.rb
rubocop-0.61.1 lib/rubocop/cop/style/class_vars.rb
rubocop-0.61.0 lib/rubocop/cop/style/class_vars.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/style/class_vars.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/style/class_vars.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/style/class_vars.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/style/class_vars.rb
rubocop-0.60.0 lib/rubocop/cop/style/class_vars.rb
rubocop-0.59.2 lib/rubocop/cop/style/class_vars.rb
rubocop-0.59.1 lib/rubocop/cop/style/class_vars.rb
rubocop-0.59.0 lib/rubocop/cop/style/class_vars.rb