forked from parse-community/Parse-SDK-iOS-OSX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParse.podspec
33 lines (28 loc) · 1.17 KB
/
Parse.podspec
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
Pod::Spec.new do |s|
s.name = 'Parse'
s.version = '1.8.0'
s.license = { :type => 'Commercial', :text => "See https://www.parse.com/about/terms" }
s.homepage = 'https://www.parse.com/'
s.summary = 'Parse is a complete technology stack to power your app\'s backend.'
s.authors = 'Parse'
s.source = { :git => "https://github.com/ParsePlatform/Parse-SDK-iOS-OSX.git", :tag => s.version.to_s }
s.platform = :ios
s.ios.deployment_target = '7.0'
s.requires_arc = true
s.source_files = 'Parse/*.{h,m}',
'Parse/Internal/**/*.{h,m}'
s.public_header_files = 'Parse/*.h'
s.resources = 'Parse/Resources/Localizable.strings'
s.frameworks = 'AudioToolbox',
'CFNetwork',
'CoreGraphics',
'CoreLocation',
'QuartzCore',
'Security',
'StoreKit',
'SystemConfiguration'
s.weak_frameworks = 'Accounts',
'Social'
s.libraries = 'z', 'sqlite3'
s.dependency 'Bolts/Tasks', '>= 1.2.0'
end