Sha256: 3679b434674dfe6455c4894876a384717e302d079875e7b7b8d4394d1874510a

Contents?: true

Size: 351 Bytes

Versions: 3

Compression:

Stored size: 351 Bytes

Contents

#!/bin/bash

SUPPORTED_VERSIONS=$(<script/SUPPORTED_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

3 entries across 3 versions & 1 rubygems

Version Path
shoulda-matchers-3.0.1 script/update_gems_in_all_appraisals
shoulda-matchers-3.0.0 script/update_gems_in_all_appraisals
shoulda-matchers-3.0.0.rc1 script/update_gems_in_all_appraisals