pod install でエラーになる場合の対処法
$ pod install
すると、
[!] Pod::Executable pull --no-rebase --no-commit
A ABContactHelper/0.1/ABContactHelper.podspec
(途中省略)
A zipzap/6.0/zipzap.podspec
Pull is not possible because you have unmerged files.
Please, fix them up in the work tree, and then use 'git add/rm
as appropriate to mark resolution, or use 'git commit -a'.
のようなエラーとなりました。
以下を参考に、
http://qiita.com/hirayaCM/items/19b8d44c6ff3ab54458d
$ pod repo remove master
Removing spec repo master
$ pod setup
Setting up CocoaPods master repo
Setup completed (read-only access)
を行い、再度、
$ pod install
を行うとエラーは発生しなくなりました。