HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Ruby27-x64/lib/ruby/site_ruby/2.7.0/ruby_installer/runtime/components_installer.rb
require "rake"

module RubyInstaller
module Runtime # Rewrite from D:/a/rubyinstaller2/rubyinstaller2/lib/ruby_installer/build/components_installer.rb
class ComponentsInstaller < Rake::Application
  attr_reader :installable_components
  attr_accessor :msys
  attr_accessor :pacman_args

  def initialize(msys: nil, pacman_args: ["--needed", "--noconfirm"], builtin_packages_dir: File.join(RbConfig::TOPDIR, "packages"))
    super()
    @msys = msys
    @pacman_args = pacman_args
    @builtin_packages_dir = builtin_packages_dir

    @task_consts = Dir[File.expand_path("../components/??_*.rb", __FILE__)].sort.map do |comppath|
      require comppath

      idx, tname = File.basename(comppath, ".rb").split("_", 2)
      const_name = tname.sub(/^[a-z\d]*/) { |match| match.capitalize }
              .gsub(/(?:_|(\/))([a-z\d]*)/i) { "#{$1}#{$2.capitalize}" }
      [idx.to_i, tname, Components.const_get(const_name)]
    end

    define_tasks
  end

  def reload
    clear
    define_tasks
  end

  def install(component_names)
    collect_command_line_tasks(component_names)
    top_level
  end

  private

  def define_tasks
    @installable_components = @task_consts.map do |idx, tname, task_const|
      t = define_task(task_const, tname => task_const.depends)
      t.task_index = idx
      t.msys = msys
      t.pacman_args = pacman_args
      t.builtin_packages_dir = @builtin_packages_dir
      t
    end

    # Do nothing if nothing is requested
    define_task(Rake::Task, :default)
  end
end
end
end