mirror of
https://github.com/hyperoslo/Cache.git
synced 2026-04-07 19:17:36 +00:00
f7805bacdb
Fix xcprivacy on podspec
24 lines
897 B
Ruby
24 lines
897 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "Cache"
|
|
s.summary = "Nothing but cache."
|
|
s.version = "7.1.0"
|
|
s.homepage = "https://github.com/hyperoslo/Cache"
|
|
s.license = 'MIT'
|
|
s.author = { "Hyper Interaktiv AS" => "ios@hyper.no" }
|
|
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
|