wvteijlingen / Spine

A Swift library for working with JSON:API APIs. It supports mapping to custom model classes, fetching, advanced querying, linking and persisting.
MIT License
266 stars 109 forks source link

Pod install dependencies #92

Open wouterwisselink opened 8 years ago

wouterwisselink commented 8 years ago

Hi there,

I'm having troubles with installing Spine from CocoaPods (1.0.0.beta.6).

This is my Podfile:

platform :ios, '8.2'
use_frameworks!

target 'Test' do
  # Swift Frameworks
  pod 'Spine', :git => 'https://github.com/wvteijlingen/Spine.git'
end

Then I'm receiving this error:

Analyzing dependencies
Pre-downloading: `Spine` from `https://github.com/wvteijlingen/Spine.git`
[!] Unable to satisfy the following requirements:

- `BrightFutures (~> 4.0)` required by `Spine (0.3)`

None of the spec sources contain a spec satisfying the `BrightFutures (~> 4.0)` dependency.
You have either; mistyped the name or version, not added the source repo that hosts the Podspec to your Podfile, or not got the latest versions of your source repos.

After that I've tried to add the dependencies myself:

pod 'Result', '~> 2.0'
pod 'BrightFutures', :git => 'https://github.com/Thomvis/BrightFutures.git'

With no luck

Unable to satisfy the following requirements:

- `Result (~> 2.0)` required by `Podfile`

Hope someone can help here.

wouterwisselink commented 8 years ago

@wvteijlingen Sorry to bother you, but is this something you can help me with?

wvteijlingen commented 8 years ago

Did you try updating to the latest version of Cocoapods and the pod spec repo (pod repo update)?

wouterwisselink commented 8 years ago

@wvteijlingen Yes I did. For now I've pulled a specific commit version (6b629f05b11c00e4d74f2d2da78d53c6c860275e). That one works, but I prefer to have the latest version of course.

Hope you can help me out :-).

wouterwisselink commented 8 years ago

@wvteijlingen Are we on a dead end here?