forked from layoutBox/PinLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
36 lines (27 loc) · 694 Bytes
/
Podfile
File metadata and controls
36 lines (27 loc) · 694 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
source 'https://cdn.cocoapods.org/'
use_frameworks!
workspace 'PinLayout.xcworkspace'
target 'PinLayoutTests-iOS' do
platform :ios, "12.0"
project 'PinLayout.xcodeproj'
pod 'Quick'
pod 'Nimble', :inhibit_warnings => true
end
target 'PinLayoutTests-tvOS' do
platform :tvos, "12.0"
project 'PinLayout.xcodeproj'
pod 'Quick'
pod 'Nimble', :inhibit_warnings => true
end
target 'PinLayoutTests-macOS' do
platform :osx, "10.13"
project 'PinLayout.xcodeproj'
pod 'Quick'
pod 'Nimble', :inhibit_warnings => true
end
target 'PinLayoutSample' do
platform :ios, "12.0"
project 'Example/PinLayoutSample.xcodeproj'
pod 'PinLayout', :path => './'
pod 'SwiftLint'
end