forked from parse-community/ParseLiveQuery-iOS-OSX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
29 lines (26 loc) · 665 Bytes
/
Podfile
File metadata and controls
29 lines (26 loc) · 665 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
# Uncomment this line to define a global platform for your project
# platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!
workspace 'ParseLiveQuery.xcworkspace'
target 'ParseLiveQuery-OSX' do
project 'Sources/ParseLiveQuery.xcodeproj'
platform :osx, '10.10'
pod 'Parse'
pod 'Bolts-Swift'
pod 'SocketRocket'
end
target 'ParseLiveQuery-iOS' do
project 'Sources/ParseLiveQuery.xcodeproj'
platform :ios, '8.0'
pod 'Parse'
pod 'Bolts-Swift'
pod 'SocketRocket'
end
target 'LiveQueryDemo' do
project 'Examples/LiveQueryDemo.xcodeproj'
platform :osx, '10.10'
pod 'Parse'
pod 'Bolts-Swift'
pod 'SocketRocket'
end