#OSバージョン
macOS Catalina(10.15.4)
rbenv install
brew install rbenv
#ruby-build install
brew install ruby-build
#zprofile に設定を追加
echo '' >> ~/.zprofile
echo '# rbenv' >> ~/.zprofile
echo 'export PATH="~/.rbenv/shims:/usr/local/bin:$PATH"' >> ~/.zprofile
echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.zprofile
source ~/.zprofile
#ruby install
# install 可能な version は rbenv install --list で確認
rbenv install #{rubyのversion}
rbenv rehash
# default のバージョンに指定する場合は以下を実施
rbenv gloabal #{rubyのversion}
#bundler install
gem install bundler
#rails install
gem install rails
# rails コマンドの確認をしたら下記のエラーが発生したため下記のコマンドにて解消させる
# Rails is not currently installed on this system. To get the latest version, simply type:
rbenv rehash
結果確認
$ rails -v
Rails 6.0.2.2