forked from parse-community/ParseLiveQuery-iOS-OSX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
45 lines (35 loc) · 917 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 'ParseLiveQuery.xcworkspace'
def commonPods
pod 'Parse'
pod 'Bolts-Swift', :git => 'https://github.com/BoltsFramework/Bolts-Swift.git', tag: '1.3.0'
pod 'SocketRocket'
end
post_install do |installer|
# Force Swift version for Xcode 8
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end
target 'ParseLiveQuery-OSX' do
project 'Sources/ParseLiveQuery.xcodeproj'
platform :osx, '10.10'
commonPods
end
target 'ParseLiveQuery-iOS' do
project 'Sources/ParseLiveQuery.xcodeproj'
platform :ios, '8.0'
commonPods
end
target 'LiveQueryDemo' do
project 'Examples/LiveQueryDemo.xcodeproj'
platform :osx, '10.10'
commonPods
end
target 'LiveQueryDemo-ObjC' do
project 'Examples/LiveQueryDemo-ObjC.xcodeproj'
platform :osx, '10.10'
commonPods
end