Ruby
Quickly setup with rbenv
Install version manager - rbenv
brew install rbenv# run this and follow the printed instructions:
rbenv initInstall the latest stable version
# List latest stable versions
rbenv install --list
# Install a specific version
rbenv install 3.2.2
# Activate a specific version
rbenv gloabl 3.2.2Install CocoaPods
Sudo-less installation
Add following line to ~/.zshrc
export GEM_HOME=$HOME/.gem
export PATH=$GEM_HOME/bin:$PATHAnd then,
source ~/.zshrcFinally,
gem install cocoapods