forked from buildasaurs/Buildasaur
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Podfile
72 lines (55 loc) · 1.18 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
plugin 'cocoapods-keys', {
:keys => [
"GitHubAPIClientId",
"GitHubAPIClientSecret",
"BitBucketAPIClientId",
"BitBucketAPIClientSecret"
]}
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/s-faychatelard/Buildasaur-podspecs.git'
project 'Buildasaur', 'Testing' => :debug
platform :osx, '10.11'
use_frameworks!
inhibit_all_warnings!
def pods_for_errbody
pod 'BuildaUtils', '~> 0.4.2'
end
def also_xcode_pods
pods_for_errbody
pod 'XcodeServerSDK', '~> 0.7.4'
pod 'ekgclient', '~> 0.3.3'
end
def buildasaur_app_pods
also_xcode_pods
pod 'Ji', '~> 2.0.1'
pod 'CryptoSwift', '~> 0.7.2'
pod 'Sparkle'
pod 'KeychainAccess', '~> 3.1.0'
end
def test_pods
pod 'Nimble', '~> 7.0.2'
pod 'DVR', '~> 1.1.0'
end
target 'Buildasaur' do
buildasaur_app_pods
pod 'Crashlytics'
pod 'OAuthSwift'
pod 'SwiftLint'
end
target 'BuildaKit' do
buildasaur_app_pods
end
target 'BuildaKitTests' do
buildasaur_app_pods
test_pods
end
target 'BuildaGitServer' do
pods_for_errbody
end
target 'BuildaGitServerTests' do
pods_for_errbody
test_pods
end
target 'BuildaHeartbeatKit' do
also_xcode_pods
end