访问网址https://gems.ruby-china.org/
#设置镜像源
gem source -a https://gems.ruby-china.org
--->gem source -l
<---
*** CURRENT SOURCES ***
https://gems.ruby-china.org/
--->
#rvm ruby安装管理器
#homebrew 第三方库管理工具
rvm reinstall 2.3.1 --autolibs=homebrew
--->sudo gem install cocoapods
#Podfile文件,文件名就是Podfile
#Podfie文件的编写
platform :ios, '7.0'
target 'your_projectName' do
pod "AFNetworking", "~> 2.0"
........
end
--->首次安装
pod install
--->更新 --no-repo-update 不更新本地仓库
pod update --no-repo-update