-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodfile
More file actions
58 lines (48 loc) · 1012 Bytes
/
Podfile
File metadata and controls
58 lines (48 loc) · 1012 Bytes
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
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
#abstract_target 'JavaScriptCoreBrowserObjectModel' do
# pod 'Alamofire', '~> 4.6'
#
# target 'iOS'
# target 'macOS'
# target 'tvOS'
#end
def shared_test_pods
pod 'GCDWebServer', '~> 3.0'
#pod 'Swifter', '~> 1.3' # currently macOS-only!
end
#abstract_target 'Tests' do
# pod 'Swifter', '~> 1.3'
#
# target 'iOS Tests'
# target 'macOS Tests'
# target 'tvOS Tests'
#end
#target 'iOS' do
# platform :ios, '9.0'
#end
#target 'iOS Tests' do
# platform :ios, '9.0'
# shared_test_pods
#end
target 'iOS' do
platform :ios, '9.0'
target 'iOS Tests' do
inherit! :search_paths
shared_test_pods
end
end
target 'macOS' do
platform :osx, '10.10'
target 'macOS Tests' do
inherit! :search_paths
shared_test_pods
end
end
target 'tvOS' do
platform :tvos, '9.0'
target 'tvOS Tests' do
inherit! :search_paths
shared_test_pods
end
end