-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathEVCloudKitDao.podspec
executable file
·34 lines (28 loc) · 1.55 KB
/
EVCloudKitDao.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
Pod::Spec.new do |s|
s.name = "EVCloudKitDao"
s.version = "3.6.0"
s.summary = "iOS: Simplified access to Apple’s CloudKit"
s.description = "Simplified access to Apple’s CloudKit using reflection and generics"
s.homepage = "https://github.com/evermeer/EVCloudKitDao"
s.screenshots = ["https://github.com/evermeer/EVCloudKitDao/blob/master/Screenshots/Screenshot.png?raw=true",
"https://github.com/evermeer/EVCloudKitDao/blob/master/Screenshots/Screenshot2.png?raw=true",
"https://github.com/evermeer/EVCloudKitDao/blob/master/Screenshots/Screenshot3.PNG?raw=true",
"https://github.com/evermeer/EVCloudKitDao/blob/master/Screenshots/Screenshot4.PNG?raw=true"]
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "evermeer"
s.authors = { 'Edwin Vermeer' => '[email protected]' }
s.social_media_url = "http://twitter.com/evermeer"
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
#s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
s.swift_versions = ['5.0']
s.source = { :git => "https://github.com/evermeer/EVCloudKitDao.git", :tag => s.version.to_s }
s.source_files = 'Source/*'
s.frameworks = "Foundation", "CloudKit"
s.ios.frameworks = "Foundation", "CloudKit"
s.osx.frameworks = "Foundation", "CloudKit"
s.tvos.frameworks = "Foundation", "CloudKit"
s.dependency "EVReflection/CloudKit"
end