Sha256: 26471dab5493a2372997e94cf9a4c332512d53c1660a0a41c970ab42a9620285
Contents?: true
Size: 325 Bytes
Versions: 129
Compression:
Stored size: 325 Bytes
Contents
#!/bin/bash VERSIONS=( 2.1.10 2.2.5 2.3.1 ) set -e trap 'echo "${VERSIONS[2]}" > .ruby-version' 0 function test_with() { version=$1 rbenv local $version if ! bundle check > /dev/null; then bundle install fi ruby -v bundle exec rake test } for version in ${VERSIONS[@]}; do test_with $version done
Version data entries
129 entries across 129 versions & 2 rubygems