Sha256: 4d77f69f1862595b758ce821ee3952525fe17a1b774b75ead3327616d9f09f8d
Contents?: true
Size: 395 Bytes
Versions: 13
Compression:
Stored size: 395 Bytes
Contents
# == ShellManager::WhichUnix # # A ShellManager driver providing access to the +which+ command found on # Unix-like systems. class AutomateIt::ShellManager::WhichUnix < AutomateIt::ShellManager::WhichBase depends_on :programs => %w(which) # Inherits WhichBase#suitability # See ShellManager#which def which(command) _which_helper do `which #{command} 2>&1` end end end
Version data entries
13 entries across 13 versions & 2 rubygems