TL;DR: Your SDKMAN Java installs are invisible to macOS. This fixes it.
curl -fsSL https://gist.githubusercontent.com/abd3lraouf/1db9bf863144802733bfd29bb5dada87/raw/install.sh | bash -s install| @ECHO off | |
| REM =========================================================================== | |
| REM Sublime Text - Path and Right Click context menu | |
| REM Felipe Guedes - https://github.com/TheZoc | |
| REM https://gist.github.com/TheZoc/e3295df094801fa937596964499ac048 | |
| REM --------------------------------------------------------------------------- | |
| REM I've swapped my environment so many times recently, that I decided to write | |
| REM this overengineered solution to add Sublime Text 3 to the right click menu | |
| REM on Windows, and to add it to the current user PATH environment variable | |
| REM allowing `subl.exe` to be easily usable from command line. |
| #!/bin/bash | |
| # System-wide crontab file and cron job directory. Change these for your system. | |
| CRONTAB='/etc/crontab' | |
| ANACRONTAB='/etc/anacrontab' | |
| CRONDIR='/etc/cron.d' | |
| # Single tab character. Annoyingly necessary. | |
| tab=$(echo -en "\t") |
So, you just cloned an existing project's repo and you run bundle install but you got the error: rbenv: version x.x.x is not installed....
What the issue means? The project uses a specific ruby version that you do not have on your system.
Here's how to fix it:
rbenv install x.x.x