嘿那里和Merry Xmas,
我想使用最新的CocoaPods版本将DDMathParser添加到我的Swift 3项目中。问题是我只安装了DDMathParser 2.0.0。我错过了什么?
我的podfile是:
platform :osx, '10.11'
target 'DDTest02' do
use_frameworks!
pod 'DDMathParser', :git => 'https://github.com/davedelong/DDMathParser.git'
当我尝试使用时:
pod 'DDMathParser', :git => 'https://github.com/davedelong/DDMathParser.git', :branch => 'swift-3.0'
抛出错误warning: Could not find remote branch swift-3.0 to clone.
fatal: Remote branch swift-3.0 not found in upstream origin
答案 0 :(得分:1)
DDMathParser作者在这里......
没有swift-3.0
分支,所以我不确定你为什么这么做。尝试使用以下方式指定3.0.0
标记:
pod 'DDMathParser', :git => 'https://github.com/davedelong/DDMathParser.git', :tag ⇒ '3.0.0'