forked from vimeo/VimeoNetworking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
42 lines (35 loc) · 718 Bytes
/
Podfile
File metadata and controls
42 lines (35 loc) · 718 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
use_frameworks!
inhibit_all_warnings!
platform :ios, '10.3'
workspace 'VimeoNetworking'
project 'VimeoNetworking.xcodeproj'
def shared_pods
pod 'SwiftLint', '0.37.0'
end
def test_pods
pod 'OHHTTPStubs/Swift', '8.0.0'
end
target 'VimeoNetworking-tvOS' do
platform :tvos, '9.0'
shared_pods
target 'VimeoNetworking-tvOSTests' do
test_pods
end
end
target 'VimeoNetworking-iOS' do
platform :ios, '10.3'
shared_pods
target 'VimeoNetworking-iOSTests' do
test_pods
end
end
target 'VimeoNetworking-macOS' do
platform :osx, '10.11'
shared_pods
target 'VimeoNetworking-macOSTests' do
test_pods
end
end
target 'Example' do
shared_pods
end