Sha256: bfb398a1bcec9168b2880adefcafd7182addeece0aae087c93ff1a53449785f7

Contents?: true

Size: 1.06 KB

Versions: 183

Compression:

Stored size: 1.06 KB

Contents

# frozen_string_literal: true

module RuboCop
  # This class represents the cache config of the caching RuboCop runs.
  # @api private
  class CacheConfig
    def self.root_dir
      root = ENV.fetch('RUBOCOP_CACHE_ROOT', nil)
      root ||= yield
      root ||= if ENV.key?('XDG_CACHE_HOME')
                 # Include user ID in the path to make sure the user has write
                 # access.
                 File.join(ENV.fetch('XDG_CACHE_HOME'), Process.uid.to_s)
               else
                 # On FreeBSD, the /home path is a symbolic link to /usr/home
                 # and the $HOME environment variable returns the /home path.
                 #
                 # As $HOME is a built-in environment variable, FreeBSD users
                 # always get a warning message.
                 #
                 # To avoid raising warn log messages on FreeBSD, we retrieve
                 # the real path of the home folder.
                 File.join(File.realpath(Dir.home), '.cache')
               end

      File.join(root, 'rubocop_cache')
    end
  end
end

Version data entries

183 entries across 178 versions & 18 rubygems

Version Path
rubocop-1.70.0 lib/rubocop/cache_config.rb
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cache_config.rb
rubocop-1.69.2 lib/rubocop/cache_config.rb
rubocop-1.69.1 lib/rubocop/cache_config.rb
rubocop-1.69.0 lib/rubocop/cache_config.rb
rubocop-1.68.0 lib/rubocop/cache_config.rb
rubocop-1.67.0 lib/rubocop/cache_config.rb
rubocop-1.66.1 lib/rubocop/cache_config.rb
rubocop-1.66.0 lib/rubocop/cache_config.rb
rubocop-1.65.1 lib/rubocop/cache_config.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cache_config.rb
rubocop-1.65.0 lib/rubocop/cache_config.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cache_config.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cache_config.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cache_config.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cache_config.rb
rubocop-1.64.1 lib/rubocop/cache_config.rb
rubocop-1.63.4 lib/rubocop/cache_config.rb
rubocop-1.63.3 lib/rubocop/cache_config.rb
rubocop-1.63.2 lib/rubocop/cache_config.rb