My goal is to make the "CleanroomLogger" available as a Pod. I haven't hosted/made a pod before and this is my first attempt. Pardon me if I ask a obvious question.
I have tried search this forum for potential answers and I haven't found that solves my problem in particular or may be I am something.
Below are links to the Podspec and the source for the Pod.
Link for the source code is: https://github.com/vikramhimanshu/CleanroomLogger Link for the Podspec: https://github.com/vikramhimanshu/CleanroomLoggerPodspec
platform :ios, '10.0'
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/vikramhimanshu/CleanroomLoggerPodspec.git'
abstract_target 'Eify' do
use_frameworks!
pod 'CleanroomLogger', :git => 'https://github.com/vikramhimanshu/CleanroomLogger.git'
target '<Name>' do
end
target '<Name2>' do
end
target '<Name3>' do
end
end
Response on terminal:
pod update
Update all pods
Updating local specs repositories
$ /usr/bin/git -C /Users/ht/.cocoapods/repos/master fetch origin --progress
$ /usr/bin/git -C /Users/ht/.cocoapods/repos/master rev-parse --abbrev-ref HEAD
master
$ /usr/bin/git -C /Users/ht/.cocoapods/repos/master reset --hard origin/master
HEAD is now at 4e310e8335f [Add] YTLiveStreaming 0.2.7
Analyzing dependencies
Pre-downloading: CleanroomLogger
from https://github.com/vikramhimanshu/CleanroomLoggerPodspec.git
[!] Unable to find a specification for 'CleanroomLogger'.
I tried without the source as well but its the same. I have a hunch I'm missing something very minor, but unable to find what!!
Your time and help is much appreciated here.