Sha256: af8e62f675339a3420612a15e594237086deae740dcdb717d3bf0d54e306cbf9
Contents?: true
Size: 312 Bytes
Versions: 6
Compression:
Stored size: 312 Bytes
Contents
#!/bin/bash VERSIONS=( 2.0.0 2.1.7 2.2.3 ) 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 rake test } for version in ${VERSIONS[@]}; do test_with $version done
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
hamlit-2.2.0 | bin/test |
hamlit-2.1.2 | bin/test |
hamlit-2.1.1 | bin/test |
hamlit-2.1.0 | bin/test |
hamlit-2.0.2 | bin/test |
hamlit-2.0.1 | bin/test |