2016-12-24 85 views
0

嘿那裏,聖誕快樂,DDMathParser 3.0.0用的CocoaPods

我想使用最新的CocoaPods版本DDMathParser添加到我的斯威夫特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

回答

1

DDMathParser作者...

沒有swift-3.0分支,所以我不確定你爲什麼要這樣做。嘗試使用以下命令指定3.0.0標記:

pod 'DDMathParser', :git => 'https://github.com/davedelong/DDMathParser.git', :tag ⇒ '3.0.0' 
+0

使用':tag ...'成功解決了問題。非常感謝您的快速回答。我剛剛看到你的包更新到Swift 3.0,並錯誤地認爲有一個'swift-3.0'分支可用。 – JFS