PCPaul Chegeinmpchege.hashnode.dev·Jun 19, 2023 · 1 min readHow to Install Ruby on rails : MacOsInstall Homebrew: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" Install Ruby: brew install ruby Install Rails: gem install rails Verify the installation: ruby -v rails -v If all the above...00