method

clean_after_install?

ruby latest stable - Class: Bundler::CLI::Common

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

clean_after_install?()
public

No documentation available.

# File lib/bundler/cli/common.rb, line 94
    def self.clean_after_install?
      clean = Bundler.settings[:clean]
      return clean unless clean.nil?
      clean ||= Bundler.feature_flag.auto_clean_without_path? && Bundler.settings[:path].nil?
      clean &&= !Bundler.use_system_gems?
      clean
    end