Sha256: ad635e5ca6ef18657824a63665030c1cec7411e54e500cca4494a7f719a95785

Contents?: true

Size: 773 Bytes

Versions: 47

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

47 entries across 47 versions & 1 rubygems

Version Path
rubygems-update-3.2.34 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.18 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.17 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.16 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.15 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.14 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.13 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.12 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.11 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.10 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.9 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.8 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.7 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.6 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.5 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.4 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.3 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.2 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.1 lib/rubygems/installer_uninstaller_utils.rb
rubygems-update-3.3.0 lib/rubygems/installer_uninstaller_utils.rb