XCode 10 にしたら pod init が失敗するようになった。
RuntimeError – [!] Xcodeproj doesn’t know about the following attributes {“inputFileListPaths”=>[], “outputFileListPaths”=>[]} for the ‘PBXShellScriptBuildPhase’ isa.
です。
cocoapod をアップデートすれば治るんではないかと思い
gem update cocoapods
を実行してみるも
You don’t have write permissions for the /Library/Ruby/Gems/2.3.0 directory.
あぁ、root じゃないと書き込み権限がないですよね、と思い、sudo をつけて
sudo gem update cocoapods
を実行してみるも
You don’t have write permissions for the /usr/bin directory.
えー、sudo でも書き込みNGって。。。
しょうがないので書き込みできそうなディレクトリを指定して
sudo gem update cocoapods -n /usr/local/bin
でどうでしょう。
Done installing documentation for cocoapods, xcodeproj after 6 seconds
Gems updated: cocoapods xcodeproj
無事終了できました。
pod init
こちらも無事終了しました。