-
Notifications
You must be signed in to change notification settings - Fork 67
/
Podfile
78 lines (60 loc) · 1.29 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
plugin 'cocoapods-keys', {
:keys => [
"GitHubAPIClientId",
"GitHubAPIClientSecret",
"BitBucketAPIClientId",
"BitBucketAPIClientSecret"
]}
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/czechboy0/Podspecs.git'
project 'Buildasaur', 'Testing' => :debug
platform :osx, '10.11'
use_frameworks!
inhibit_all_warnings!
def pods_for_errbody
pod 'BuildaUtils', '~> 0.3.2'
end
def rac
pod 'ReactiveCocoa', '~> 4.0.1'
end
def also_xcode_pods
pods_for_errbody
pod 'XcodeServerSDK', '~> 0.7.1'
pod 'ekgclient', '~> 0.3.2'
end
def buildasaur_app_pods
also_xcode_pods
rac
pod 'Ji', '~> 1.2.0'
pod 'CryptoSwift'
pod 'Sparkle'
pod 'KeychainAccess'
end
def test_pods
pod 'Nimble', :git => "https://github.com/Quick/Nimble.git", :commit => "1730543fcd8b7d7258a3270bb6d3118921d46f9d"
pod 'DVR', '~> 0.2.1-snap1'
end
target 'Buildasaur' do
buildasaur_app_pods
pod 'Crashlytics'
pod 'OAuthSwift'
end
target 'BuildaKit' do
buildasaur_app_pods
end
target 'BuildaKitTests' do
buildasaur_app_pods
test_pods
end
target 'BuildaGitServer' do
pods_for_errbody
rac
end
target 'BuildaGitServerTests' do
pods_for_errbody
rac
test_pods
end
target 'BuildaHeartbeatKit' do
also_xcode_pods
end