Based on the source code that inserts this tag, which looks like this:
if source_version > lockfile_version matching_spec = unlocked_pods.find { |s| s.name == pod_name } matching_version = matching_spec ? matching_spec.version : '(unused)' [pod_name, lockfile_version, matching_version, source_version] end
It seems that this simply means that CocoaPods could not find this Pod in your “unlocked containers”.
I'm not talking about Ruby well enough to pinpoint what an “unlocked” module is (and I'm not familiar enough with CocoaPods to hear this term necessarily ... but I know a “lock file” and maybe it's connected) but here is the source code to determine this :
def unlocked_pods @unlocked_pods ||= begin pods = [] UI.titled_section('Analyzing dependencies') do pods = Installer::Analyzer.new(config.sandbox, config.podfile). analyze(false). specs_by_target.values.flatten.uniq end pods end end
nhgrif
source share