forked from parse-community/ParseLiveQuery-iOS-OSX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParseLiveQuery.podspec
More file actions
29 lines (23 loc) · 1.11 KB
/
ParseLiveQuery.podspec
File metadata and controls
29 lines (23 loc) · 1.11 KB
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
Pod::Spec.new do |s|
s.name = 'ParseLiveQuery'
s.version = '2.6.1'
s.license = { :type => 'BSD' }
s.summary = 'Allows for subscriptions to queries in conjunction with parse-server.'
s.homepage = 'http://parseplatform.org'
s.social_media_url = 'https://twitter.com/ParsePlatform'
s.authors = { 'Parse Community' => 'info@parseplatform.org', 'Richard Ross' => 'richardross@fb.com', 'Nikita Lutsenko' => 'nlutsenko@me.com', 'Florent Vilmart' => 'florent@flovilmart.com' }
s.source = { :git => 'https://github.com/ParsePlatform/ParseLiveQuery-iOS-OSX.git', :tag => s.version.to_s }
s.requires_arc = true
s.platform = :ios, :osx, :tvos
s.swift_version = '4.2'
s.cocoapods_version = '>= 1.4'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.source_files = 'Sources/ParseLiveQuery/**/*.{swift,h}'
s.module_name = 'ParseLiveQuery'
s.dependency 'Parse', '~> 1.17.1'
s.dependency 'Bolts-Swift', '~> 1.4.0'
s.dependency 'Starscream', '~> 3.0.5'
s.dependency 'Bolts', '~> 1.9.0'
end