Installation issue via Cocoapods
sunnyyoung opened this issue · 1 comments
sunnyyoung commented
Check List
- I have read the README.md, but there is no information I need.
- I have searched in existing issues, but did find a same one.
Issue Description
Description
Install Bamboots
via Cocoapods without specify a git url will fail in building.
Reproduce
- Install
Bamboots
with the podfile config below:
target 'ProjectName' do
use_frameworks!
pod 'Bamboots'
end
And the result will be:
Analyzing dependencies
Downloading dependencies
Using Alamofire (4.5.1)
Using AlamofireObjectMapper (4.1.0)
Using Bamboots (0.5.0)
Using ObjectMapper (2.2.9)
Using Realm (3.0.2)
Using RealmSwift (3.0.2)
Generating Pods project
Integrating client project
Sending stats
Pod installation complete! There is 1 dependency from the Podfile and 6 total pods installed.
- Install
Bamboots
with the podfile config below:
platform :ios, '10.0'
target 'ProjectName' do
use_frameworks!
pod 'Bamboots', :git => 'git@github.com:mmoaay/Bamboots.git'
end
And the result will be:
Analyzing dependencies
Downloading dependencies
Using Alamofire (4.5.1)
Using AlamofireCodable (0.1.1)
Using Bamboots (0.5.0)
Generating Pods project
Integrating client project
Sending stats
Pod installation complete! There is 1 dependency from the Podfile and 3 total pods installed.
Everything is ok.
Other Comment
Found this: https://github.com/CocoaPods/Specs/blob/master/Specs/2/3/e/Bamboots/0.5.0/Bamboots.podspec.json
mmoaay commented
Sorry, we have something wrong with our puslish, We've already release a new version 0.6.0 to fix this problem.
You can find it at:
https://github.com/CocoaPods/Specs/blob/master/Specs/2/3/e/Bamboots/0.6.0/Bamboots.podspec.json
Thank you for your issue