forked from buildasaurs/Buildasaur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
54 lines (42 loc) · 779 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
platform :osx, '10.10'
use_frameworks!
inhibit_all_warnings!
def pods_for_errbody
pod 'BuildaUtils', '~> 0.2.6'
end
def rac
pod 'ReactiveCocoa', '=4.0.0-RC.1'
end
def also_xcode_pods
pods_for_errbody
pod 'XcodeServerSDK', '~> 0.5.4'
pod 'ekgclient', '~> 0.3.0'
end
def buildasaur_app_pods
also_xcode_pods
rac
pod 'Ji', '~> 1.2.0'
pod 'CryptoSwift'
end
def test_pods
pod 'Nimble', '~> 3.0.0'
end
target 'Buildasaur' do
buildasaur_app_pods
end
target 'BuildaKit' do
buildasaur_app_pods
end
target 'BuildaKitTests' do
also_xcode_pods
test_pods
end
target 'BuildaGitServer' do
pods_for_errbody
end
target 'BuildaGitServerTests' do
pods_for_errbody
end
target 'BuildaHeartbeatKit' do
also_xcode_pods
end