mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
de25e8f7d8
[ci skip]
16 lines
372 B
Bash
Executable file
16 lines
372 B
Bash
Executable file
#!/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
|