forked from Sorix/CloudCore
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCloudCore.podspec
More file actions
executable file
·26 lines (22 loc) · 928 Bytes
/
CloudCore.podspec
File metadata and controls
executable file
·26 lines (22 loc) · 928 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
Pod::Spec.new do |s|
s.name = "CloudCore"
s.summary = "Framework that enables synchronization between CloudKit and Core Data."
s.version = "5.1.0"
s.homepage = "https://github.com/deeje/CloudCore"
s.license = 'MIT'
s.author = { "deeje" => "deeje@mac.com", "Vasily Ulianov" => "vasily@me.com" }
s.source = {
:git => "https://github.com/deeje/CloudCore.git",
:tag => s.version.to_s
}
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '11.0'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '6.0'
s.source_files = 'Source/**/*.swift'
s.ios.frameworks = 'Foundation', 'CloudKit', 'CoreData'
s.osx.frameworks = 'Foundation', 'CloudKit', 'CoreData'
s.tvos.frameworks = 'Foundation', 'CloudKit', 'CoreData'
s.watchos.frameworks = 'Foundation', 'CloudKit', 'CoreData'
s.swift_versions = [5.1]
end