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-3.7.0 support/busser_install_command.sh
test-kitchen-3.6.0 support/busser_install_command.sh
test-kitchen-3.5.1 support/busser_install_command.sh
test-kitchen-3.5.0 support/busser_install_command.sh
test-kitchen-3.4.0 support/busser_install_command.sh
test-kitchen-3.3.2 support/busser_install_command.sh
test-kitchen-3.3.1 support/busser_install_command.sh
test-kitchen-3.3.0 support/busser_install_command.sh
test-kitchen-3.2.2 support/busser_install_command.sh
test-kitchen-3.2.1 support/busser_install_command.sh
test-kitchen-3.2.0 support/busser_install_command.sh
test-kitchen-3.1.1 support/busser_install_command.sh
test-kitchen-3.1.0 support/busser_install_command.sh
test-kitchen-rsync-3.0.0.pre.3 support/busser_install_command.sh
test-kitchen-rsync-3.0.0.pre.2 support/busser_install_command.sh
test-kitchen-rsync-3.0.0.pre.1 support/busser_install_command.sh
test-kitchen-3.0.0 support/busser_install_command.sh
test-kitchen-2.12.0 support/busser_install_command.sh
test-kitchen-2.11.2 support/busser_install_command.sh
test-kitchen-2.11.1 support/busser_install_command.sh