Sha256: 9e1440a7d708febc47b72f497da08e353b6986ae9a507bcec6cd5f117ea14d2e

Contents?: true

Size: 372 Bytes

Versions: 4

Compression:

Stored size: 372 Bytes

Contents

#!/bin/bash

set -euo pipefail

SUPPORTED_VERSIONS=$(script/supported_ruby_versions)

update-gems-for-version() {
  local version="$1"
  (export RBENV_VERSION=$version; bundle update "${@:2}"; bundle exec appraisal update "${@:2}")
}

for version in $SUPPORTED_VERSIONS; do
  echo
  echo "*** Updating gems for $version ***"
  update-gems-for-version "$version" "$@"
done

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
shoulda-4.0.0 script/update_gems_in_all_appraisals
shoulda-4.0.0.rc2 script/update_gems_in_all_appraisals
shoulda-4.0.0.rc1 script/update_gems_in_all_appraisals
shoulda-matchers-4.0.0.rc1 script/update_gems_in_all_appraisals