Files
hyperoslo-Cache/Cache.podspec
T
Kristaps Grinbergs ffc74c98d3 Project update
* Swift 5 in podspec
* Swift 5 for project file
* fix warnings
2019-08-11 09:54:11 +03:00

25 lines
836 B
Ruby

Pod::Spec.new do |s|
s.name = "Cache"
s.summary = "Nothing but cache."
s.version = "5.2.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 = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.2'
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.frameworks = 'Foundation'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
s.swift_version = '5.0'
end