1、查看ruby版本
ruby --version
2、brew升级
brew update (可能会出现下列报错,报错后执行第3步)
3、切到homebrew,移除当前的homebrew-core
cd /usr/local/Homebrew/Library/Taps/homebrew
rm -rf homebrew-core
4、继续升级
brew update
5、执行完后查看ruby版本
6、升级ruby
brew install ruby
升级完后查看版本还是在之前版本时,做以下切换
echo 'export PATH="/usr/local/opt/ruby/bin:$PATH"' >> ~/.bash_profile
source ~/.bash_profile
再次查看版本,成功!!!