I cannot understand why the Cocoapod is unable to find the pod specification I created when I run pod install. Could someone help me solve this trouble?
pod install
I missed adding , causing issue.
,
Replacing,
pod 'PodName' '~> 2.3'
With,
pod 'PodName', '~> 2.3'
Did the job.