关于 CocoaPods
昨天有看到说ruby.taobao.org
停止更新了,于是乎更新了https://gems.ruby-china.org/
1.CocoaPods 的安装和更新
之前用sudo gem install cocoapods
就可以了
现在在 EI Capitan
系统下得sudo gem install -n /usr/local/bin cocoapods
我们安装的 cocoapods
的 repo 在 ~/.cocoapods
目录下
2.卸载Cocoapods
sudo gem uninstall cocoapods -v xxxx
同理移除其他安装的 gemlists
3.一些容易遗忘的命令
gem source
查看当前 gem 源
gem source --remove xxxx
移除源
gem source -a xxxx
添加源
gem list
查看安装的 local gems 列表
sudo gem update --system
更新 Ruby gems 版本
4.自动生成.gitignore
文件
Github官方的上的https://github.com/github/gitignore
有一些.gitignore
文件,比较全。
同时,https://www.gitignore.io/
上面也有教怎么自动生成.gitignore
文件。
我有对比过两个的差异,几乎没有。
下面是我的zsh 关于 gitignore 的设置,可以参考.
function gi() { curl -L -s https://www.gitignore.io/api/$@ ;}
alias gitignore='gi objective-c,xcode >> .gitignore'