forked from Sorix/CloudCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCloudCore.podspec
More file actions
executable file
·25 lines (21 loc) · 926 Bytes
/
CloudCore.podspec
File metadata and controls
executable file
·25 lines (21 loc) · 926 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
Pod::Spec.new do |s|
s.name = "CloudCore"
s.summary = "Framework that enables synchronization between CloudKit (iCloud) and Core Data. Can be used as CloudKit caching mechanism."
s.version = "2.0.1"
s.homepage = "https://github.com/sorix/CloudCore"
s.license = 'MIT'
s.author = { "Vasily Ulianov" => "vasily@me.com" }
s.source = {
:git => "https://github.com/sorix/CloudCore.git",
:tag => s.version.to_s
}
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'
s.source_files = 'Source/**/*.swift'
s.ios.frameworks = 'Foundation', 'CloudKit', 'CoreData'
s.osx.frameworks = 'Foundation', 'CloudKit', 'CoreData'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
s.documentation_url = 'http://cocoadocs.org/docsets/CloudCore/'
end