Sha256: f782acf8b82a4ef2f1f702a06c4d4b04eecfcc921fba5dbaee02ccdbd1c944eb

Contents?: true

Size: 530 Bytes

Versions: 2

Compression:

Stored size: 530 Bytes

Contents

if ((& "$ruby" "$gem" list busser -i) -ne "true") {
  Write-Host "-----> Installing Busser ($version)`n"
  & "$ruby" "$gem" install $gem_install_args.Split() 2>&1
} else {
  Write-Host "-----> Busser installation detected ($version)`n"
}

if (-Not (Test-Path "$busser")) {
  $gem_bindir = & "$ruby" -rrubygems -e "puts Gem.bindir.dup.gsub('/', '\\')"
  & "$ruby" "$gem_bindir\busser" setup --type bat 2>&1
}

Write-Host "       Installing Busser plugins: $plugins`n"
& "$busser" plugin install $plugins.Split() 2>&1

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
test-kitchen-1.10.1 support/busser_install_command.ps1
test-kitchen-1.7.0 support/busser_install_command.ps1