forked from ericmarkmartin/Nightscouter2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
62 lines (49 loc) · 1.14 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
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
inhibit_all_warnings!
def limited_pods
inhibit_all_warnings!
pod 'Socket.IO-Client-Swift'
#pod 'DateTools'
end
def global_pods
inhibit_all_warnings!
pod 'Alamofire'
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
pod 'CryptoSwift'
pod 'KeychainAccess'
pod 'ReactiveCocoa', '4.0.4-alpha-4'
end
# iOS9 App with some UI.
target 'Nightscouter' do
platform :ios, '9.0'
limited_pods
global_pods
end
# iOS9 Today Extension with some UI.
target 'Nightscouter Today' do
platform :ios, '9.0'
limited_pods
global_pods
end
# iOS9 Based Cocoa Touch Framework used in 'Nightscouter' and 'Nightscouter Today'.
target 'NightscouterKit' do
platform :ios, '9.0'
limited_pods
global_pods
end
# watchOS2 App
target 'Nightscouter Watch App' do
platform :watchos, '2.0'
global_pods
end
# watchOS2 App Extension
target 'Nightscouter Watch App Extension' do
platform :watchos, '2.0'
global_pods
end
# watchOS2 App Framework
target 'NightscouterWatchKit' do
platform :watchos, '2.0'
global_pods
end