-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
25 lines (23 loc) · 965 Bytes
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use_frameworks!
target 'Asynchronous_Example' do
pod 'Asynchronous', :path => '../'
pod 'Asynchronous/Alamofire', :path => '../'
pod 'Asynchronous/BrightFutures', :path => '../'
pod 'Asynchronous/HydraAsync', :path => '../'
pod 'Asynchronous/PromiseKit', :path => '../'
pod 'Asynchronous/Promises', :path => '../'
pod 'Asynchronous/RxSwift', :path => '../'
pod 'Asynchronous/Then', :path => '../'
target 'Asynchronous_Tests' do
inherit! :search_paths
pod 'Asynchronous', :path => '../'
pod 'Asynchronous/Alamofire', :path => '../'
pod 'Asynchronous/BrightFutures', :path => '../'
pod 'Asynchronous/HydraAsync', :path => '../'
pod 'Asynchronous/PromiseKit', :path => '../'
pod 'Asynchronous/Promises', :path => '../'
pod 'Asynchronous/RxSwift', :path => '../'
pod 'Asynchronous/Then', :path => '../'
pod 'Mockingjay', :git => 'https://github.com/metaltoad/Mockingjay.git', :branch => 'mt-swift4'
end
end