forked from evermeer/EVCloudKitDao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEVCloudKitDao.podspec
executable file
·31 lines (26 loc) · 1.47 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
Pod::Spec.new do |s|
s.name = "EVCloudKitDao"
s.version = "3.5.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.social_media_url = "http://twitter.com/evermeer"
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
#s.watchos.deployment_target = '2.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