iOS 升级cocoapods
2018-06-06 本文已影响18人
TIGER_XXXX
1. 检测gem版本
$ gem -v
如果gem版本小于2.6.x,则需要更新gem
2. 更新gem(gem版本高于2.6.x可跳过此步)
- 检测ruby源,更新gem需要官方的ruby源
$ gem sources -l
- 替换ruby源为官方地址(如果ruby源是"https://rubygems.org/"则跳过此步)
$ gem sources --add https://rubygems.org/ --remove xxx.xxx
- 确保ruby源中只有"https://rubygems.org/"
$ gem sources -l
- 更新gem(此步要翻墙)
$ gem update --system
- 查看gem版本,确认大于2.6.x
$ gem -v
- 将ruby源切换回国内的
$ gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/
- 确保只有"https://gems.ruby-china.org/"一个ruby源
$ gem sources -l
3. 更新cocoapods
$ gem install cocoapods -n /usr/local/bin