How to Install Ruby on rails : MacOs
Install 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...
mpchege.hashnode.dev1 min read