Class: Kompo::InstallDeps

Inherits:
Taski::Section
  • Object
show all
Defined in:
lib/kompo/tasks/install_deps.rb

Overview

Section to handle platform-specific dependencies. Switches implementation based on the current platform. Exports lib_paths for linker flags (e.g., “-L/usr/local/lib”)

Defined Under Namespace

Classes: ForLinux, ForMacOS

Instance Method Summary collapse

Instance Method Details

#implObject



11
12
13
# File 'lib/kompo/tasks/install_deps.rb', line 11

def impl
  macos? ? ForMacOS : ForLinux
end