forked from parse-community/Parse-SDK-iOS-OSX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Parse.podspec
89 lines (80 loc) · 4.15 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
Pod::Spec.new do |s|
s.name = 'Parse'
s.version = '1.14.2'
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.homepage = 'https://www.parse.com/'
s.summary = 'A library that gives you access to the powerful Parse cloud platform from your iOS/OS X/watchOS/tvOS app.'
s.authors = 'Parse'
s.source = { :git => "https://github.com/ParsePlatform/Parse-SDK-iOS-OSX.git", :tag => s.version.to_s }
s.platform = :ios, :osx, :tvos, :watchos
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source_files = 'Parse/*.{h,m}',
'Parse/Internal/**/*.{h,m}'
s.public_header_files = 'Parse/*.h'
s.ios.exclude_files = 'Parse/Internal/PFMemoryEventuallyQueue.{h,m}'
s.osx.exclude_files = 'Parse/PFNetworkActivityIndicatorManager.{h,m}',
'Parse/PFProduct.{h,m}',
'Parse/PFPurchase.{h,m}',
'Parse/Internal/PFAlertView.{h,m}',
'Parse/Internal/Product/**/*.{h,m}',
'Parse/Internal/Purchase/**/*.{h,m}',
'Parse/Internal/PFMemoryEventuallyQueue.{h,m}'
s.tvos.exclude_files = 'Parse/PFNetworkActivityIndicatorManager.{h,m}',
'Parse/PFPush.{h,m}',
'Parse/PFPush+Synchronous.{h,m}',
'Parse/PFPush+Deprecated.{h,m}',
'Parse/PFInstallation.{h,m}',
'Parse/Internal/PFAlertView.{h,m}',
'Parse/Internal/Push/**/*.{h,m}',
'Parse/Internal/Installation/Controller/*.{h,m}',
'Parse/Internal/Installation/Constants/*.{h,m}',
'Parse/Internal/Installation/CurrentInstallationController/*.{h,m}',
'Parse/Internal/Installation/PFInstallationPrivate.h',
'Parse/Internal/Commands/PFRESTPushCommand.{h,m}'
s.watchos.exclude_files = 'Parse/PFNetworkActivityIndicatorManager.{h,m}',
'Parse/PFProduct.{h,m}',
'Parse/PFPurchase.{h,m}',
'Parse/PFPush.{h,m}',
'Parse/PFPush+Synchronous.{h,m}',
'Parse/PFPush+Deprecated.{h,m}',
'Parse/PFInstallation.{h,m}',
'Parse/Internal/PFAlertView.{h,m}',
'Parse/Internal/PFReachability.{h,m}',
'Parse/Internal/Product/**/*.{h,m}',
'Parse/Internal/Purchase/**/*.{h,m}',
'Parse/Internal/Push/**/*.{h,m}',
'Parse/Internal/Installation/Controller/*.{h,m}',
'Parse/Internal/Installation/Constants/*.{h,m}',
'Parse/Internal/Installation/CurrentInstallationController/*.{h,m}',
'Parse/Internal/Installation/PFInstallationPrivate.h',
'Parse/Internal/Commands/PFRESTPushCommand.{h,m}',
'Parse/Internal/PFMemoryEventuallyQueue.{h,m}'
s.resources = 'Parse/Resources/en.lproj'
s.ios.frameworks = 'AudioToolbox',
'CFNetwork',
'CoreGraphics',
'CoreLocation',
'QuartzCore',
'Security',
'StoreKit',
'SystemConfiguration'
s.ios.weak_frameworks = 'Accounts',
'Social'
s.osx.frameworks = 'ApplicationServices',
'CFNetwork',
'CoreGraphics',
'CoreLocation',
'QuartzCore',
'Security',
'SystemConfiguration'
s.tvos.frameworks = 'CoreLocation',
'StoreKit',
'SystemConfiguration',
'Security'
s.libraries = 'z', 'sqlite3'
s.dependency 'Bolts/Tasks', '~> 1.8'
end