Sha256: a0dab8a1138139f17271359545e6e497f926388540297a1281389e9ac8f0648c
Contents?: true
Size: 369 Bytes
Versions: 6
Compression:
Stored size: 369 Bytes
Contents
#!/bin/bash set -euo pipefail SUPPORTED_VERSIONS=$(bin/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
6 entries across 6 versions & 1 rubygems