Bump Ruby version in some docs

This commit is contained in:
Godfrey Chan
2018-07-25 14:34:03 -07:00
parent 6b5c77cf83
commit 5affdcbd59
4 changed files with 9 additions and 9 deletions

View File

@ -40,12 +40,12 @@ source ~/.rvm/scripts/rvm
rvm get stable
rvm autolibs homebrew # Tell RVM to install anything it's missing with homebrew
rvm requirements # This will install baseline requirements that might be missing
rvm install 2.0.0-turbo # Now, install Ruby 2.0.0 with performance patches
rvm --create --ruby-version use 2.0.0-turbo # Use this Ruby as the default in this directory
rvm install 2.4.4 # Now, install Ruby 2.4.4
rvm --create --ruby-version use 2.4.4 # Use this Ruby as the default in this directory
# Check that the correct version is installed and active
echo "Checking Ruby installation..."
ruby -v | grep 2.0.0
ruby -v | grep 2.4.4
## Configure PostgreSQL (PostgreSQL was installed by Homebrew using `brew bundle`) ##
echo "Loading PostgreSQL..."