Sha256: 909c6c2fbea9bc4d79e501275ad2e3c67da5192a46a36c2ff749b747cbdb6d4d

Contents?: true

Size: 773 Bytes

Versions: 32

Compression:

Stored size: 773 Bytes

Contents

# frozen_string_literal: true

##
# Helper methods for both Gem::Installer and Gem::Uninstaller

module Gem::InstallerUninstallerUtils

  def regenerate_plugins_for(spec, plugins_dir)
    plugins = spec.plugins
    return if plugins.empty?

    require "pathname"

    spec.plugins.each do |plugin|
      plugin_script_path = File.join plugins_dir, "#{spec.name}_plugin#{File.extname(plugin)}"

      File.open plugin_script_path, "wb" do |file|
        file.puts "require_relative '#{Pathname.new(plugin).relative_path_from(Pathname.new(plugins_dir))}'"
      end

      verbose plugin_script_path
    end
  end

  def remove_plugins_for(spec, plugins_dir)
    FileUtils.rm_f Gem::Util.glob_files_in_dir("#{spec.name}#{Gem.plugin_suffix_pattern}", plugins_dir)
  end

end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
rubygems-update-3.4.3 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.4.2 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.4.1 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.4.0 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.26 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.25 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.24 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.23 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.22 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.21 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.20 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.19 lib/rubygems/installer_uninstaller_utils.rb