chore(ruby): add install script for Ruby

This commit is contained in:
Stefan Imhoff
2021-11-28 11:40:27 +01:00
parent b7c368262b
commit f9f7fb3a2d
2 changed files with 8 additions and 0 deletions

View File

@@ -10,5 +10,8 @@ source ./npm.sh
# Installing Python version manager # Installing Python version manager
source ./python.sh source ./python.sh
# Install current version of Ruby
source ./ruby.sh
# Install global Gems # Install global Gems
source ./gem.sh source ./gem.sh

5
setup/ruby.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
rbenv install $(rbenv install -l | grep -v - | tail -1)
rbenv global $(rbenv install -l | grep -v - | tail -1)