Sha256: df4346a1a8e6606502d93ec3d9cc52010b0f548b3c1678d94d1d3f35ac7cb500

Contents?: true

Size: 613 Bytes

Versions: 2

Compression:

Stored size: 613 Bytes

Contents

#!/bin/bash

set -eu

gem_args="--no-verbose"
if [[ $(ruby --version) != "ruby 1.9.3"* ]]; then
  gem_args+=" --no-document"
fi

case "${_RUBYGEMS_VERSION-"latest"}" in
  "latest")
    echo "Updating rubygems"
    gem update $gem_args --system
  ;;
  *)
    echo "Updating rubygems to $_RUBYGEMS_VERSION}"
    gem update $gem_args --system $_RUBYGEMS_VERSION
  ;;
esac

case "${_BUNDLER_VERSION-"latest"}" in
  "latest")
    echo "Updating bundler"
    gem update bundler $gem_args
  ;;
  *)
    echo "Updating bundler to $_BUNDLER_VERSION"
    gem install bundler $gem_args --version $_BUNDLER_VERSION
  ;;
esac

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
appsignal-2.11.10-java support/install_deps
appsignal-2.11.10 support/install_deps