문제
pod install
하는 과정에서 문제 발생.
[!] CDN: trunk URL couldn't be downloaded: https://cdn.cocoapods.org/CocoaPods-version.yml Response: URL using bad/illegal format or missing URL
라는 에러 메세지를 뱉는다.
해결방법

Podfile 최상단에 source 추가

Podfile.lock 파일 제거, trunk 제거
$ rm Podfile.lock $ pod repo remove trunk
pod install 다시 시도
$ pod install

그러면 이제 Cloning spec repo 에서 한참 시간이 걸리더니, pod install이 정상적으로 진행된다.

위 그림과 같이 정상적으로
pod install
이 완료되었다.