forked from hyperoslo/Cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCache.podspec
23 lines (21 loc) · 897 Bytes
/
Cache.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "Cache"
s.summary = "Nothing but cache."
s.version = "7.4.0"
s.homepage = "https://github.com/hyperoslo/Cache"
s.license = 'MIT'
s.author = { "Hyper Interaktiv AS" => "[email protected]" }
s.source = { :git => "https://github.com/hyperoslo/Cache.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/hyperoslo'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.14'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '6.0'
s.requires_arc = true
s.ios.source_files = 'Source/{iOS,Shared}/**/*'
s.osx.source_files = 'Source/{Mac,Shared}/**/*'
s.tvos.source_files = 'Source/{iOS,Shared}/**/*'
s.resource_bundles = { 'Cache_privacy' => 'Source/PrivacyInfo.xcprivacy' }
s.frameworks = 'Foundation'
s.swift_version = '5.0'
end