chore(script/rvm-install): Add support to RVM. Use rvm command to install ruby version in variable.

RVM already print the logs. No need to printf message here.
RVM already skip installation if already done with logs.
This commit is contained in:
Pauloparakleto
2024-03-22 14:31:05 -03:00
committed by Pauloparakleto
parent 8b591b7d21
commit 1d6323c520

9
script/rvm-install.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
#
# Install our selected Ruby version defined in the .ruby-version file.
#
# Requires:
# - [rvm](https://rvm.io/)
#
rvm install $RUBY_VERSION