Sha256: 147ec99100eb93f01b96a4b6c52ccddd398a0570d50998b7da19becedd4da9fc

Contents?: true

Size: 555 Bytes

Versions: 64

Compression:

Stored size: 555 Bytes

Contents

$gem list --no-versions | grep "^busser" 2>&1 >/dev/null
if test $? -ne 0; then
  echo "-----> Installing Busser ($version)"
  $gem install $gem_install_args
else
  echo "-----> Busser installation detected ($version)"
fi

if test ! -f "$BUSSER_ROOT/bin/busser"; then
  $busser setup
fi

for plugin in $plugins; do
  $gem list --no-versions | grep "^$plugin$" 2>&1 >/dev/null
  if test $? -ne 0; then
    echo "-----> Installing Busser plugin: $plugin"
    $busser plugin install $plugin
  else
    echo "-----> Busser plugin detected: $plugin"
  fi
done

Version data entries

64 entries across 64 versions & 2 rubygems

Version Path
test-kitchen-2.2.5 support/busser_install_command.sh
test-kitchen-2.2.4 support/busser_install_command.sh
test-kitchen-2.2.3 support/busser_install_command.sh
test-kitchen-2.2.2 support/busser_install_command.sh
test-kitchen-2.2.1 support/busser_install_command.sh
test-kitchen-2.2.0 support/busser_install_command.sh
test-kitchen-2.1.0 support/busser_install_command.sh
test-kitchen-2.0.1 support/busser_install_command.sh
test-kitchen-2.0.0 support/busser_install_command.sh
test-kitchen-1.24.0 support/busser_install_command.sh
test-kitchen-1.23.5 support/busser_install_command.sh
test-kitchen-1.23.4 support/busser_install_command.sh
test-kitchen-1.23.3 support/busser_install_command.sh
test-kitchen-1.23.2 support/busser_install_command.sh
test-kitchen-1.22.1 support/busser_install_command.sh
test-kitchen-1.23.0 support/busser_install_command.sh
test-kitchen-1.22.0 support/busser_install_command.sh
test-kitchen-1.21.2 support/busser_install_command.sh
test-kitchen-1.21.1 support/busser_install_command.sh
test-kitchen-1.21.0 support/busser_install_command.sh