diff --git a/backend/scripts/install-ruby.sh b/backend/scripts/install-ruby.sh new file mode 100755 index 00000000..b6bc6fed --- /dev/null +++ b/backend/scripts/install-ruby.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +apt-get update +apt-get install -y curl + +curl -sSL https://get.rvm.io | bash -s stable +source /etc/profile.d/rvm.sh + +echo `rvm list known` +rvm install 2.6.1 + +echo `ruby -v`