Module: Factorix::CLI::Commands::DownloadSupport

Included in:
MOD::Download, MOD::Install, MOD::Sync, MOD::Update
Defined in:
lib/factorix/cli/commands/download_support.rb

Overview

Provides common download functionality for MOD commands

This module extracts the common download logic used across Download, Install, and Sync commands.

Examples:

class Install < Base
  include DownloadSupport

  def call(mod_specs:, **options)
    # ... build targets ...
    download_mods(targets, jobs)
  end
end