forked from layoutBox/PinLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
45 lines (34 loc) · 876 Bytes
/
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
use_frameworks!
workspace 'PinLayout.xcworkspace'
target 'PinLayoutTests-iOS' do
platform :ios, "8.0"
project 'PinLayout.xcodeproj'
pod 'Quick'
pod 'Nimble', :inhibit_warnings => true
end
target 'PinLayoutTests-tvOS' do
platform :tvos, "9.0"
project 'PinLayout.xcodeproj'
pod 'Quick'
pod 'Nimble', :inhibit_warnings => true
end
target 'PinLayoutTests-macOS' do
platform :osx, "10.10"
project 'PinLayout.xcodeproj'
pod 'Quick'
pod 'Nimble', :inhibit_warnings => true
end
target 'PinLayoutSample' do
platform :ios, "8.0"
project 'Example/PinLayoutSample.xcodeproj'
pod 'PinLayout', :path => './'
pod 'SwiftLint'
# Debug only
pod 'Reveal-SDK', :configurations => ['Debug']
end
#target 'PinLayoutMacOsSample' do
# platform :osx, '10.10'
# project 'Example/PinLayoutMacOsSample.xcodeproj'
#
# pod 'PinLayout', :path => './'
#end