Adjust gem install script to not use latest Ruby

We're already using the "latest" Ruby which is 2.1.1 at this point in
time.
This commit is contained in:
Elliot Winkler 2014-06-27 14:04:05 -06:00
parent b71996eeff
commit dd89ff2169
1 changed files with 0 additions and 7 deletions

View File

@ -4,11 +4,6 @@ SUPPORTED_VERSIONS=$(<script/SUPPORTED_VERSIONS)
install-gems-for-version() {
local version="$1"
if [[ $version == "latest" ]]; then
version=""
fi
(export RBENV_VERSION=$version; bundle && bundle exec appraisal install)
}
@ -17,5 +12,3 @@ for version in $SUPPORTED_VERSIONS; do
echo "*** Installing gems for $version ***"
install-gems-for-version $version
done
install-gems-for-version latest